@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #00CFE2;
    --primary-foreground: #000000;
    --background: hsl(0, 0%, 8%);
    --foreground: hsl(0, 0%, 95%);
    --muted: hsl(0, 0%, 15%);
    --muted-foreground: hsl(0, 0%, 65%);
    --border: hsl(0, 0%, 20%);
    
    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}
    
html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-display);
    background: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse-glow 4s ease-in-out infinite;
}

@media (max-width: 768px) {
    .bg-glow {
        opacity: 0.15;
    }
}

.bg-glow-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: var(--primary);
}

.bg-glow-2 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: var(--primary);
    animation-delay: 1.5s;
}

.bg-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.2;
}

.code-animation {
    position: fixed;
    bottom: 10%;
    left: 5%;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    color: var(--primary);
    opacity: 0.6;
    pointer-events: none;
    z-index: 50;
    white-space: pre;
    line-height: 1.6;
    max-width: 400px;
    text-shadow: 0 0 15px rgba(0, 207, 226, 1);
}

@media (hover: none) {
    .code-animation {
        display: none;
}
}


.code-animation::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary);
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
}
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    contain: layout;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    padding: 1.5rem 0;
    min-height: 4rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
    margin: 0;
    padding: 0;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    opacity: 0;
    animation: fadeInLogo 0.5s ease-in 0.2s forwards;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    font-family: var(--font-display);
    text-transform: lowercase;
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: rgba(0, 207, 226, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 207, 226, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:visited,
.btn-outline:active,
.btn-outline:focus {
    color: var(--foreground);
    border-color: var(--border);
}

.help-center-wrapper {
    position: relative;
    min-height: 2.5rem;
}

.help-code-animation {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    white-space: pre;
    line-height: 1.6;
    max-width: 300px;
    text-shadow: 0 0 10px rgba(0, 207, 226, 0.8);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 207, 226, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.help-center-wrapper:hover .help-code-animation {
    opacity: 1;
    transform: translateY(0);
}


@media (hover: none) {
    .help-code-animation {
        display: none;
    }
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-text {
    display: inline;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 4rem 0 8rem;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 207, 226, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 207, 226, 0.2);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease-out 0.2s both;
    }

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 207, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 207, 226, 0.5));
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-description {
        color: var(--foreground);
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
    }
}

/* Hero Contact Cards */
.hero-contacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
        padding: 0 1rem;
    animation: fadeUp 0.8s ease-out 0.6s both;
}

@media (min-width: 768px) {
    .hero-contacts {
        grid-template-columns: repeat(3, 1fr);
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero-contacts {
        max-width: 24rem;
    }
}

.contact-card-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-glass:hover {
    background: rgba(0, 207, 226, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 207, 226, 0.2);
}

.contact-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-card-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 207, 226, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    text-align: center;
    z-index: 100;
}

.footer-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ============================================
   SYSTEM STATUS (Support Page Only)
   ============================================ */
.system-status-wrapper {
    position: relative;
}

.system-status {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.system-status:hover {
    background: rgba(0, 207, 226, 0.1);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-label {
    color: var(--muted-foreground);
    font-weight: 400;
}

.status-value {
    color: var(--foreground);
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.status-value.operational {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #10b981;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.status-tooltip {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    min-width: 280px;
    max-width: calc(100vw - 2rem);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.status-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-display);
    flex-shrink: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.status-button:hover,
.status-button:focus {
    background: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
    outline: none;
}

.status-button:active {
    transform: scale(0.98);
}

.status-button .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .system-status-wrapper:hover .status-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .system-status-wrapper:hover .status-tooltip {
    opacity: 0;
        visibility: hidden;
    }
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tooltip-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.tooltip-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.tooltip-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.tooltip-value {
    font-size: 0.75rem;
    color: var(--foreground);
    font-weight: 500;
    font-family: 'Courier New', monospace;
    text-align: right;
}

.tooltip-value.operational {
    color: #10b981;
}

@media (max-width: 768px) {
    .status-tooltip {
        min-width: 260px;
        max-width: calc(100vw - 2rem);
        right: 1rem;
        left: auto;
        transform: translateX(0);
    }
}

/* ============================================
   CURSOR FOLLOWER
   ============================================ */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 207, 226, 0.4);
    will-change: transform;
}

.cursor-follower.active {
    opacity: 0.6;
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .cursor-follower {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .nav-logo {
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
    }
    
    .help-center-wrapper {
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-end;
    }
    
    /* Smaller button on mobile */
    .help-center-wrapper .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }
    
    .help-center-wrapper .btn .btn-icon {
        width: 14px;
        height: 14px;
    }
    
    .logo-img {
        margin: 0;
        padding: 0;
        max-width: 100%;
        width: auto;
        height: 2rem;
        box-sizing: border-box;
        display: block;
    }
    
    .btn {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Status button responsive adjustments */
    .status-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }
    
    .status-button .status-dot {
        width: 5px;
        height: 5px;
    }
    
    .hero-section {
        padding: 2rem 0 4rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
}

/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

/* Support Section */
.support-section {
    padding: 2rem 0 3rem;
    min-height: auto;
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.support-header {
    text-align: center;
    margin-bottom: 2rem;
}

.support-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.support-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted-foreground);
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 968px) {
    .support-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.form-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 207, 226, 0.1);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    }

.required {
    color: var(--primary);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #000000 !important;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground) !important;
    font-family: var(--font-display);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    -webkit-text-fill-color: var(--foreground) !important;
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset !important;
    box-shadow: 0 0 0px 1000px #000000 inset !important;
}

.form-input:focus {
    border-color: var(--primary);
    background: #000000 !important;
    box-shadow: 0 0 0 3px rgba(0, 207, 226, 0.1), 0 0 0px 1000px #000000 inset !important;
    -webkit-box-shadow: 0 0 0 3px rgba(0, 207, 226, 0.1), 0 0 0px 1000px #000000 inset !important;
    -webkit-text-fill-color: var(--foreground) !important;
}

.form-input::placeholder {
    color: var(--muted-foreground);
    opacity: 1;
    }

.form-input:-webkit-autofill,
.form-input:-webkit-autofill:hover,
.form-input:-webkit-autofill:focus,
.form-input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--foreground) !important;
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset !important;
    box-shadow: 0 0 0px 1000px #000000 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 207, 226, 0.1), 0 0 0px 1000px #000000 inset !important;
    box-shadow: 0 0 0 3px rgba(0, 207, 226, 0.1), 0 0 0px 1000px #000000 inset !important;
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-input.success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.form-error {
    font-size: 0.75rem;
    color: #ef4444;
    min-height: 1.25rem;
    display: block;
}

.form-input.success + .form-error {
    color: #10b981;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contacts-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contacts-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 207, 226, 0.1);
}

.contacts-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-card:hover {
    background: rgba(0, 207, 226, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-item-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

/* Contacts Info */
.contacts-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contacts-info-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.contacts-info-text:last-child {
    margin-bottom: 0;
}

.toast-container {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    min-width: 300px;
    max-width: calc(100vw - 2rem);
    box-sizing: border-box;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-content {
    flex: 1;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: var(--foreground);
}

.toast-success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.toast-success .toast-message {
    color: #10b981;
}

.toast-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.toast-error .toast-message {
    color: #ef4444;
}

.toast-warning {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.toast-warning .toast-message {
    color: #f59e0b;
}

.toast-info {
    border-color: var(--primary);
    background: rgba(0, 207, 226, 0.1);
}

.toast-info .toast-message {
    color: var(--primary);
}

@media (max-width: 768px) {
    .support-section {
        padding: 2rem 0 3rem;
    }
    
    .support-container {
        padding: 0 1rem;
    }
    
    .form-card,
    .contacts-card {
        padding: 1.5rem;
    }
    
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
    }
}
