* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    -webkit-background-attachment: fixed;
    background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        background-attachment: scroll;
        -webkit-background-attachment: scroll;
    }
    
    .global-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        z-index: -1;
    }
    
    .main-content {
        background: transparent;
        position: relative;
        z-index: 1;
    }
}

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 50%, rgba(15, 52, 96, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lottie-container {
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.loading-spinner {
    font-size: 3rem;
    color: #00d4ff;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-spinner {
    font-size: 3rem;
    color: #00d4ff;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main Content */
.main-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
    position: relative; /* Ensure proper positioning of background elements */
    min-height: 100vh; /* Ensure full height for background elements */
}

.main-content.hidden {
    display: none;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    padding: 1.2rem 0;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

/* Logo icon glow on hover (matches logo text glow) */
.nav-logo img {
    transition: filter 0.3s ease;
}

.nav-logo a:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: none;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

/* Auth buttons in navigation */
.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Profile dropdown in navigation */
.nav-profile {
    position: relative;
}

.profile-dropdown {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.profile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 50px;
    z-index: -1;
    padding: 1px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.profile-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.profile-btn:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1a1a2e;
}

.profile-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.profile-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    width: 200px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 12px;
    z-index: -1;
    padding: 1px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.profile-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown.active .dropdown-menu::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.item-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    margin: 0.5rem 0;
}

.nav-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* Hide mobile elements on desktop by default */
.mobile-menu-header,
.mobile-auth-buttons,
.mobile-profile-section {
    display: none;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-auth {
        display: none !important;
    }
    
    .nav-auth-buttons {
        display: none !important;
    }
    
    /* Ensure logo and hamburger are properly positioned on mobile */
    .nav-container {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .hamburger-menu {
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 350px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 3rem 2rem;
        gap: 0.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        overflow-y: scroll;
        overflow-x: hidden;
    }
    
    .mobile-menu-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 212, 255, 0.05);
    }
    
    .mobile-menu-title {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        background: linear-gradient(45deg, #00d4ff, #00ff88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    

    
    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }
    
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-links.active::before {
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(20px);
        background: linear-gradient(45deg, #00d4ff, #00ff88);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        text-decoration: none;
        font-weight: 600;
        position: relative;
    }
   
    
    /* Add margin to first navigation link for better spacing */
    .nav-link:first-of-type {
        margin-top: 1.5rem;
    }
    
    /* Add subtle hover effect for better visual appeal */
    .nav-link:hover {
        background: linear-gradient(45deg, #00ff88, #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    }
    
    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(0, 212, 255, 0.1);
        padding-left: 1rem;
        border-radius: 8px;
        transform: translateX(5px);
        background: linear-gradient(45deg, #00ff88, #00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    
    /* Override for Download Me link in mobile menu */
    .nav-link.download-me-neo {
        background: linear-gradient(45deg, #00d4ff, #00ff88) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 1.2rem;
        width: 100%;
        opacity: 1;
        transform: translateX(0);
        line-height: 1.2;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .nav-link.download-me-neo::before {
        display: none !important;
    }
    
    .nav-link.download-me-neo:hover {
        background: linear-gradient(45deg, #00ff88, #00d4ff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.6) !important;
        transform: translateX(5px) !important;
        box-shadow: none !important;
        padding-left: 1rem !important;
        border-radius: 8px !important;
        padding: 0.5rem 0 !important;
    }
    
    .nav-link.download-me-neo i {
        margin-right: 10px;
        font-size: 1.1em;
        background: linear-gradient(45deg, #00d4ff, #00ff88) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
        text-shadow: none !important;
        transform: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
    }
    
    .nav-link.download-me-neo:hover i {
        background: linear-gradient(45deg, #00ff88, #00d4ff) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.6) !important;
        transform: none !important;
    }
    
    /* Touch-friendly improvements */
    .nav-link {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    .hamburger-menu {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    /* Mobile Profile Section */
    .mobile-profile-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        flex-shrink: 0;
        min-height: auto;
        height: auto;
    }
    
    .mobile-profile-header {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 255, 136, 0.08) 100%);
        border-radius: 12px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        margin-bottom: 0.3rem;
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
    }
    
    .mobile-profile-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(45deg, #00d4ff, #00ff88);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: #1a1a2e;
        font-size: 1rem;
    }
    
    .mobile-profile-info {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        flex: 1;
    }
    
    .mobile-profile-name {
        color: white;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .mobile-profile-email {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.2;
    }
    
    .mobile-profile-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-profile-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .mobile-profile-link:hover {
        background: rgba(0, 212, 255, 0.1);
        transform: translateX(5px);
    }
    
    .mobile-profile-divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.5rem 0;
    }
    
    .mobile-profile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-profile-btn {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
    
    .mobile-profile-btn:hover {
        background: rgba(0, 212, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    }
    
    .mobile-profile-btn i {
        font-size: 1.1rem;
        color: #00d4ff;
        width: 20px;
        text-align: center;
    }
    
    .mobile-profile-btn span {
        flex: 1;
    }
    
    .mobile-profile-btn.admin-link i {
        color: #ff6b6b;
    }
    
    .mobile-profile-btn.admin-link:hover {
        background: rgba(255, 107, 107, 0.1);
        border-color: rgba(255, 107, 107, 0.3);
    }
    
    .mobile-profile-btn[type="button"],
    .mobile-profile-btn button {
        background: none;
        border: none;
        color: inherit;
        font: inherit;
        cursor: pointer;
        width: 100%;
        text-align: left;
        padding: 0;
        margin: 0;
    }
    
    /* Ensure button elements with mobile-profile-btn class get proper styling */
    button.mobile-profile-btn {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        font-weight: 500;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
    
    button.mobile-profile-btn:hover {
        background: rgba(0, 212, 255, 0.1);
        transform: translateX(5px);
        border-color: rgba(0, 212, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    }
    
    button.mobile-profile-btn i {
        font-size: 1.1rem;
        color: #00d4ff;
        width: 20px;
        text-align: center;
    }
    
    button.mobile-profile-btn span {
        flex: 1;
    }
    
    .link-icon {
        font-size: 1.2rem;
        color: #00d4ff;
        width: 20px;
        text-align: center;
    }
    
    /* Mobile Auth Buttons */
    .mobile-auth-buttons {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .mobile-auth-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-auth-btn.signin-btn {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-auth-btn.signup-btn {
        background: linear-gradient(45deg, #00d4ff, #00ff88);
        color: #1a1a2e;
        border: none;
    }
    
    .mobile-auth-btn:hover,
    .mobile-auth-btn:active {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-auth-btn.signin-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(0, 212, 255, 0.5);
    }
    
    .mobile-auth-btn.signup-btn:hover {
        background: linear-gradient(45deg, #00ff88, #00d4ff);
    }
}

@media (max-width: 768px) {
    .nav-links {
        width: 100%;
        right: -100%;
        padding: 100px 1.5rem 2rem 1.5rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .hamburger-menu {
        flex-shrink: 0;
        margin-left: auto;
        width: 28px;
        height: 22px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .nav-auth {
        gap: 0.5rem;
    }
    
    .nav-btn .btn-text {
        display: none;
    }
    
    .nav-btn {
        padding: 0.5rem;
        min-width: 40px;
        height: 40px;
    }
    
    .mobile-auth-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        
        width: 100%;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        justify-content: space-between;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hamburger-menu {
        flex-shrink: 0;
        margin-left: auto;
        width: 25px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .mobile-auth-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .mobile-auth-btn .btn-text {
        font-size: 0.75rem;
    }
}

/* Desktop Styles - Only hide mobile elements, don't change desktop navigation */
@media (min-width: 1025px) {
    .hamburger-menu {
        display: none !important;
    }
    
    .mobile-menu-header {
        display: none !important;
    }
    
    .mobile-auth-buttons,
    .mobile-profile-section {
        display: none !important;
    }
}



.signin-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.signin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
}

.signin-btn:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.signup-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.nav-btn .btn-icon {
    font-size: 1rem;
    display: inline-block;
}

.nav-btn .btn-text {
    font-size: 0.85rem;
    font-weight: 700;
}










/* Liquid Badge */
.liquid-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: liquidFlow 3s ease-in-out infinite;
    overflow: hidden;
}

.badge-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    animation: liquidMorph 4s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: bubbleFloat 2s ease-in-out infinite;
    z-index: 1;
}

.badge-text {
    color: #00d4ff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.badge-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    animation: bubblePulse 3s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: charReveal 0.6s ease-out forwards;
}

.title-line:nth-child(1) .title-char:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(1) .title-char:nth-child(2) { animation-delay: 0.35s; }
.title-line:nth-child(1) .title-char:nth-child(3) { animation-delay: 0.4s; }
.title-line:nth-child(1) .title-char:nth-child(4) { animation-delay: 0.45s; }
.title-line:nth-child(1) .title-char:nth-child(5) { animation-delay: 0.5s; }
.title-line:nth-child(1) .title-char:nth-child(6) { animation-delay: 0.55s; }

.title-line:nth-child(2) .title-char:nth-child(1) { animation-delay: 0.6s; }
.title-line:nth-child(2) .title-char:nth-child(2) { animation-delay: 0.65s; }
.title-line:nth-child(2) .title-char:nth-child(3) { animation-delay: 0.7s; }
.title-line:nth-child(2) .title-char:nth-child(4) { animation-delay: 0.75s; }
.title-line:nth-child(2) .title-char:nth-child(5) { animation-delay: 0.8s; }
.title-line:nth-child(2) .title-char:nth-child(6) { animation-delay: 0.85s; }
.title-line:nth-child(2) .title-char:nth-child(7) { animation-delay: 0.9s; }
.title-line:nth-child(2) .title-char:nth-child(8) { animation-delay: 0.95s; }
.title-line:nth-child(2) .title-char:nth-child(9) { animation-delay: 1s; }

.hero-title .highlight {
    background: linear-gradient(45deg, #00d4ff, #00ff88, #00d4ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Hero Description */
.hero-description {
    font-size: 1.3rem;
    color: #b8c5d6;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 550px;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1s forwards;
}

.highlight-text {
    color: #00d4ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Fluid Stats */
.fluid-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.fluid-stat {
    flex: 1;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.fluid-stat:nth-child(1) { animation-delay: 1.4s; }
.fluid-stat:nth-child(2) { animation-delay: 1.6s; }
.fluid-stat:nth-child(3) { animation-delay: 1.8s; }

.fluid-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.stat-blob {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(0, 255, 136, 0.3));
    animation: blobMorph 6s ease-in-out infinite;
}

.blob-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: innerBlob 4s ease-in-out infinite;
}

.stat-content {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

.liquid-cta {
    position: relative;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 25px;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.liquid-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.cta-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: liquidFlow 3s ease-in-out infinite;
}

.liquid-cta:hover .cta-liquid {
    opacity: 1;
}

.cta-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: bubbleRise 3s ease-out infinite;
}

.bubble:nth-child(1) { top: 80%; left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { top: 70%; right: 30%; animation-delay: 1s; }
.bubble:nth-child(3) { top: 90%; left: 60%; animation-delay: 2s; }

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.primary-cta:hover .cta-glow {
    left: 100%;
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.cta-icon {
    font-size: 1.2rem;
}

.cta-text {
    font-weight: 600;
}

/* Hero Trust */
.hero-trust {
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.6s forwards;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.trust-badge:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
}

.trust-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: trustGlow 3s ease-in-out infinite;
}

.trust-icon {
    font-size: 1rem;
    color: #00d4ff;
}

.trust-text {
    font-size: 0.9rem;
    color: #b8c5d6;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

.download-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.download-btn.android {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.download-btn.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.download-btn.ios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.download-btn.ios:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.play-icon {
    font-size: 0.8rem;
}

.apple-icon {
    font-size: 1.2rem;
}

.guide-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Right side - Liquid Interface */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out;
}

.liquid-interface {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.liquid-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: liquidFloat 6s ease-in-out infinite;
}

.liquid-surface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.surface-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: rippleExpand 4s ease-out infinite;
}

.surface-ripple:nth-child(1) { animation-delay: 0s; }
.surface-ripple:nth-child(2) { animation-delay: 1.5s; }
.surface-ripple:nth-child(3) { animation-delay: 3s; }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.4), rgba(0, 255, 136, 0.4));
    animation: floatingBlob 8s ease-in-out infinite;
}

.blob-a {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.blob-b {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.blob-c {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.liquid-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-1 { width: 12px; height: 12px; top: 10%; left: 15%; animation-delay: 0s; }
.bubble-2 { width: 8px; height: 8px; top: 30%; right: 20%; animation-delay: 1s; }
.bubble-3 { width: 15px; height: 15px; bottom: 30%; left: 30%; animation-delay: 2s; }
.bubble-4 { width: 10px; height: 10px; top: 70%; right: 40%; animation-delay: 3s; }
.bubble-5 { width: 6px; height: 6px; bottom: 60%; left: 70%; animation-delay: 4s; }
.bubble-6 { width: 14px; height: 14px; bottom: 10%; right: 10%; animation-delay: 5s; }

.interface-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.interface-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: statIndicator 0.8s ease-out forwards;
    opacity: 0;
}

.interface-stat:nth-child(1) { animation-delay: 0.5s; }
.interface-stat:nth-child(2) { animation-delay: 0.7s; }
.interface-stat:nth-child(3) { animation-delay: 0.9s; }

.interface-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
}

.stat-wave {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 50%;
    animation: wavePulse 2s ease-in-out infinite;
}

.stat-text {
    font-size: 0.8rem;
    color: #b8c5d6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 120px;
    height: 240px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    border: 3px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.app-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: appPulse 2s ease-in-out infinite;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.5s; }
.app-icon:nth-child(3) { animation-delay: 1s; }
.app-icon:nth-child(4) { animation-delay: 1.5s; }

.phone-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 20px;
    background: #333;
    border-radius: 2px;
}

/* Connection Line */
.connection-line {
    position: relative;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00ff88, #00d4ff);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: connectionFlow 2s linear infinite;
    margin: 0 2rem;
}

.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    animation: dataFlow 1.5s linear infinite;
}

.data-particle:nth-child(1) { top: -1px; left: 0%; animation-delay: 0s; }
.data-particle:nth-child(2) { top: -1px; left: 25%; animation-delay: 0.5s; }
.data-particle:nth-child(3) { top: -1px; left: 50%; animation-delay: 1s; }
.data-particle:nth-child(4) { top: -1px; left: 75%; animation-delay: 1.5s; }

/* PC Mockup */
.pc-mockup {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    border: 3px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pcFloat 3s ease-in-out infinite;
}

.pc-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mirrored-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mirror-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    animation: livePulse 1s ease-in-out infinite;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.indicator-text {
    font-size: 0.7rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mirror-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.mirror-app-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: mirrorPulse 2s ease-in-out infinite;
}

.mirror-app-icon:nth-child(1) { animation-delay: 0s; }
.mirror-app-icon:nth-child(2) { animation-delay: 0.3s; }
.mirror-app-icon:nth-child(3) { animation-delay: 0.6s; }
.mirror-app-icon:nth-child(4) { animation-delay: 0.9s; }

.pc-frame {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #333;
    border-radius: 0 0 10px 10px;
}

/* Performance Overlay */
.performance-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

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

.metric-label {
    font-size: 0.8rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.scroll-arrow svg {
    color: #3b82f6;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 212, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 30%; right: 30%; animation-delay: 1s; }

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

/* Background elements */
.background-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Ensure it's above background but below content */
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.dot:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.dot:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.dot:nth-child(3) { top: 40%; left: 15%; animation-delay: 1s; }
.dot:nth-child(4) { top: 60%; left: 85%; animation-delay: 1.5s; }
.dot:nth-child(5) { top: 80%; left: 20%; animation-delay: 2s; }
.dot:nth-child(6) { top: 30%; left: 90%; animation-delay: 0.3s; }
.dot:nth-child(7) { top: 70%; left: 5%; animation-delay: 0.8s; }
.dot:nth-child(8) { top: 90%; left: 70%; animation-delay: 1.3s; }
.dot:nth-child(9) { top: 15%; left: 60%; animation-delay: 1.8s; }
.dot:nth-child(10) { top: 85%; left: 40%; animation-delay: 0.2s; }
.dot:nth-child(11) { top: 25%; left: 25%; animation-delay: 0.7s; }
.dot:nth-child(12) { top: 55%; left: 75%; animation-delay: 1.2s; }
.dot:nth-child(13) { top: 75%; left: 35%; animation-delay: 1.7s; }
.dot:nth-child(14) { top: 45%; left: 65%; animation-delay: 0.4s; }
.dot:nth-child(15) { top: 65%; left: 45%; animation-delay: 0.9s; }
.dot:nth-child(16) { top: 35%; left: 85%; animation-delay: 1.4s; }
.dot:nth-child(17) { top: 85%; left: 15%; animation-delay: 1.9s; }
.dot:nth-child(18) { top: 5%; left: 50%; animation-delay: 0.6s; }
.dot:nth-child(19) { top: 95%; left: 40%; animation-delay: 1.1s; }
.dot:nth-child(20) { top: 50%; left: 5%; animation-delay: 1.6s; }

.background-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Ensure it's above background but below content */
}

.star-bg {
    position: absolute;
    color: #00d4ff;
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite;
}

.star-bg:nth-child(1) { top: 5%; left: 20%; animation-delay: 0s; }
.star-bg:nth-child(2) { top: 25%; left: 75%; animation-delay: 0.7s; }
.star-bg:nth-child(3) { top: 45%; left: 10%; animation-delay: 1.4s; }
.star-bg:nth-child(4) { top: 65%; left: 80%; animation-delay: 2.1s; }
.star-bg:nth-child(5) { top: 85%; left: 30%; animation-delay: 0.3s; }
.star-bg:nth-child(6) { top: 35%; left: 90%; animation-delay: 1s; }
.star-bg:nth-child(7) { top: 75%; left: 15%; animation-delay: 1.7s; }
.star-bg:nth-child(8) { top: 95%; left: 60%; animation-delay: 2.4s; }
.star-bg:nth-child(9) { top: 15%; left: 40%; animation-delay: 0.5s; }
.star-bg:nth-child(10) { top: 55%; left: 25%; animation-delay: 1.2s; }
.star-bg:nth-child(11) { top: 75%; left: 85%; animation-delay: 1.9s; }
.star-bg:nth-child(12) { top: 25%; left: 55%; animation-delay: 0.8s; }
.star-bg:nth-child(13) { top: 65%; left: 35%; animation-delay: 1.5s; }
.star-bg:nth-child(14) { top: 85%; left: 75%; animation-delay: 2.2s; }
.star-bg:nth-child(15) { top: 35%; left: 65%; animation-delay: 0.9s; }
.star-bg:nth-child(16) { top: 95%; left: 25%; animation-delay: 1.6s; }

/* Features Section - Modern Design */
.features-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 4rem;
    margin: 0 auto;
    max-width: 1200px;
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
   
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 6rem;
}

.features-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.features-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.features-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-showcase-item:hover::before {
    opacity: 1;
}

.feature-showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.feature-visual {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.feature-icon-wrapper {
    position: relative;
    z-index: 3;
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    /* animation: float 3s ease-in-out infinite; */
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Feature-specific animations */
.feature-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
}

.feature-pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.feature-pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

.feature-pulse-ring:nth-child(4) {
    animation-delay: 1.5s;
}

/* OLD INDICATORS - DISABLED FOR PANDA
.quality-indicator {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.quality-bar {
    width: 6px;
    height: 16px;
    background: linear-gradient(to top, #00d4ff, #00ff88);
    border-radius: 3px;
    animation: qualityPulse 1.5s ease-in-out infinite;
}

.quality-bar:nth-child(1) { animation-delay: 0s; }
.quality-bar:nth-child(2) { animation-delay: 0.2s; }
.quality-bar:nth-child(3) { animation-delay: 0.4s; }
.quality-bar:nth-child(4) { animation-delay: 0.6s; }

.connection-animation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: connectionPulse 2s ease-in-out infinite;
}

.device-phone, .device-pc {
    font-size: 1.5rem;
    animation: float 2s ease-in-out infinite;
}

.connection-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    border-radius: 1px;
    animation: connectionFlow 1.5s ease-in-out infinite;
}

.gaming-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.game-controller {
    font-size: 1.5rem;
    animation: gamePulse 1s ease-in-out infinite;
}

.performance-dots {
    display: flex;
    gap: 3px;
}

.performance-dots .dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: performancePulse 1s ease-in-out infinite;
}

.performance-dots .dot:nth-child(1) { animation-delay: 0s; }
.performance-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.performance-dots .dot:nth-child(3) { animation-delay: 0.4s; }

.recording-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.record-button {
    width: 32px;
    height: 32px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: recordPulse 1s ease-in-out infinite;
}

.record-dot {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
}

.audio-waves {
    display: flex;
    gap: 2px;
    align-items: end;
    height: 30px;
}

.audio-waves .wave {
    width: 4px;
    background: linear-gradient(to top, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: audioWave 1s ease-in-out infinite;
}

.audio-waves .wave:nth-child(1) { height: 10px; animation-delay: 0s; }
.audio-waves .wave:nth-child(2) { height: 20px; animation-delay: 0.2s; }
.audio-waves .wave:nth-child(3) { height: 15px; animation-delay: 0.4s; }
*/

.security-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-icon {
    font-size: 1.5rem;
    z-index: 3;
    animation: shieldGlow 2s ease-in-out infinite;
}

.security-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.security-rings .ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: securityRing 2s ease-in-out infinite;
}

.security-rings .ring:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.security-rings .ring:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.5s;
}

.security-rings .ring:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 1s;
}

.feature-content {
    flex: none;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}



.feature-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-action {
    display: flex;
    justify-content: center;
}

.feature-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.feature-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(0, 212, 255, 0.8), 0 0 70px rgba(0, 212, 255, 0.3);
    }
}

@keyframes twinkle {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* New animations for modern features */
@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes qualityPulse {
    0%, 100% {
        height: 20px;
        opacity: 0.7;
    }
    50% {
        height: 30px;
        opacity: 1;
    }
}

@keyframes connectionPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes connectionFlow {
    0% {
        background: linear-gradient(90deg, #00d4ff, #00ff88);
    }
    50% {
        background: linear-gradient(90deg, #00ff88, #00d4ff);
    }
    100% {
        background: linear-gradient(90deg, #00d4ff, #00ff88);
    }
}

@keyframes gamePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes performancePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes recordPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
    }
}

@keyframes audioWave {
    0%, 100% {
        height: 10px;
    }
    50% {
        height: 25px;
    }
}

@keyframes shieldGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    }
}

@keyframes securityRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}



/* Guide Section - Modern Timeline Design */
.guide-section {
    padding: 6rem 2rem;
    position: relative;
    margin-top: -2px;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.guide-header {
    text-align: center;
    margin-bottom: 6rem;
}

.guide-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: float 3s ease-in-out infinite;
}

.guide-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.guide-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.guide-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00d4ff, #00ff88);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.guide-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.guide-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    z-index: 2;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.step-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.step-connector {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #00d4ff, transparent);
    margin-top: 1rem;
    border-radius: 2px;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.step-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.progress-text {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 600;
    white-space: nowrap;
}

.guide-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.guide-cta-btn {
    position: relative;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 44px;
    box-sizing: border-box;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.guide-cta-btn:hover .btn-glow {
    opacity: 1;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    margin-top: -2px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Mobile pricing container - remove padding */
@media (max-width: 768px) {
    .pricing-container {
        padding: 1rem;
    }
}

    .pricing-header {
        text-align: center;
        margin-bottom: 6rem;
    }
    
    /* Mobile pricing header - reduce margin */
    @media (max-width: 768px) {
        .pricing-header {
            margin-bottom: 3rem;
        }
    }

.pricing-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
    max-width: 1200px;
}

.pricing-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    grid-column: 1 / -1;
}

.pricing-loading .loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 212, 255, 0.3);
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.pricing-loading p {
    color: #b8c5d6;
    font-size: 1.1rem;
    margin: 0;
}

.no-plans-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-plans-message h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-plans-message p {
    color: #b8c5d6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.no-plans-message .cta-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.no-plans-message .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.no-plans-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.no-plans-actions .cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.no-plans-actions .cta-btn.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Contact Modal Styles */
.contact-content {
    color: white;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-card {
        min-height: auto;
        padding: 1.2rem;
    }
    
    .plan-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .plan-name {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
        align-items: center;
    }
    
    .contact-icon {
        margin-bottom: 0;
        margin-right: 1rem;
    }
}

.contact-info h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info p {
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #00d4ff;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    padding: 1.2rem 1.2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.pricing-card.professional {
    border-color: rgba(0, 255, 136, 0.3);
}

.pricing-card.professional:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 30px 60px rgba(0, 255, 136, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #1a1a2e;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 0.8rem;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
    /* animation: float 3s ease-in-out infinite; */
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    position: relative;
    z-index: 2;
    margin-bottom: 1.2rem;
}

.currency {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.period {
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
}

.plan-features {
    position: relative;
    z-index: 2;
    margin-bottom: 1.2rem;
    flex: 1;
    min-height: 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.feature-icon {
    color: #00ff88;
    font-weight: bold;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.feature-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-btn {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 44px;
    box-sizing: border-box;
    width: 100%;
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.pricing-btn:hover .btn-arrow {
    transform: translateX(5px);
}



/* Download Section */
.download-section {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    margin-top: -2px;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download-header {
    margin-bottom: 3rem;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.download-description {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn-main {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.download-btn-main.android {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-main.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.download-btn-main.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.download-btn-main.ios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.download-btn-main.ios:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.download-disclaimer {
    font-size: 1rem;
    color: white;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: transparent;
    padding: 2rem 0;
    margin-top: -2px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-logo-text:hover {
    transform: none;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Footer logo icon glow on hover */
.footer-logo img {
    transition: filter 0.3s ease;
}

.footer-logo a:hover img {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.footer-link {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    position: relative;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-copyright p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Tablet Responsive - Logo center top, links below */
@media (max-width: 1024px) and (min-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Tablet Layout - 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-showcase-item {
        padding: 2.5rem;
    }
    
    .feature-circle {
        width: 130px;
        height: 130px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
}

/* Mobile Layout - 2 columns */
@media (max-width: 768px) {
    .lottie-container {
        width: 450px;
        height: 450px;
    }
    
    /* Navigation Responsive */
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1.8rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-auth {
        gap: 0.8rem;
    }
    
    .nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .profile-btn {
        padding: 0.4rem 0.8rem;
    }
    
    .profile-avatar {
        width: 28px;
        height: 28px;
    }
    
    .profile-name {
        font-size: 0.85rem;
    }
    
    .nav-btn .btn-icon {
        font-size: 0.9rem;
    }
    
    .nav-btn .btn-text {
        font-size: 0.8rem;
    }
    
    .features-section {
        padding: 4rem 1rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-showcase-item {
        padding: 2rem;
    }
    
    .feature-visual {
        flex: none;
    }
    
    .feature-circle {
        width: 150px;
        height: 150px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-stats {
        justify-content: center;
    }
    
    .feature-action {
        justify-content: center;
    }
    

    
    .guide-timeline {
        max-width: 100%;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .guide-step:nth-child(even) {
        flex-direction: column;
    }
    
    .step-visual {
        flex: none;
        margin-bottom: 2rem;
    }
    
    .step-content {
        margin: 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    /* Center step circles and numbers for mobile */
    .step-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .step-circle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .pricing-section {
        padding: 0;
    }
}

/* Small Mobile Guide Section Centering */
@media (max-width: 480px) {
    .step-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.2rem;
        width: 100%;
    }
    
    .step-circle {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

/* Continue with existing 768px media query */
@media (max-width: 768px) {
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .guide-section {
        padding: 4rem 1rem;
    }
    
    .guide-title {
        font-size: 2.5rem;
    }
    
    .guide-subtitle {
        font-size: 1.1rem;
    }
    
    .download-section {
        padding: 4rem 1rem;
    }
    
    .download-title {
        font-size: 2.5rem;
    }
    
    .download-description {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    

    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 0;
    }
    
    .amount {
        font-size: 3rem;
    }
    

    
    .download-btn-main {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-left {
        flex: 1;
    }
    
    .hero-right {
        flex: 1;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    

    
    .hero-image {
        max-width: 110%;
    }
}

/* Mobile Navigation for Small Screens */
@media (max-width: 600px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-logo {
        
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        order: 2;
        justify-content: center;
    }
    
    .nav-auth {
        order: 1;
        margin-bottom: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.4rem 0.9rem;
    }
    
    .signup-btn {
        padding: 0.4rem 1rem;
    }
    
    /* Fix mobile menu spacing for 600-481px range */
    .navbar .nav-links {
        padding: 90px 2rem 3rem 2rem !important;
        height: 100vh !important;
        min-height: 100vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    .navbar .mobile-menu-header {
        padding: 1.5rem 1.5rem !important;
    }
    
    .navbar .mobile-menu-title {
        font-size: 1.4rem !important;
    }
    
    .navbar .nav-link:first-of-type {
        margin-top: 1.5rem !important;
    }
    
    
}

@media (max-width: 480px) {
    .lottie-container {
        width: 350px;
        height: 350px;
    }
    .navbar .nav-link:first-of-type {
        margin-top: 1.5rem !important;
    }
    .hero-image {
        height: 300px;
    }
    
    /* Navigation Mobile Responsive */
    .navbar {
        padding: 0.9rem 0;
    }
    
    .nav-container {
        padding: 0 1.2rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .nav-auth {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .profile-btn {
        padding: 0.35rem 0.7rem;
        gap: 0.5rem;
    }
    
    .profile-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .profile-name {
        font-size: 0.75rem;
    }
    
    .dropdown-menu {
        width: 180px;
    }
    
    .dropdown-item {
        padding: 0.7rem 1rem;
    }
    
    .nav-btn .btn-icon {
        font-size: 0.8rem;
    }
    
    .nav-btn .btn-text {
        font-size: 0.7rem;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-showcase-item {
        padding: 1.5rem;
    }
    
    .feature-circle {
        width: 120px;
        height: 120px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 1rem;
    }
    

    
    .amount {
        font-size: 3rem;
    }
    
    .plan-icon {
        font-size: 2.5rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 2rem 1.5rem;
    }
    
    .download-section {
        padding: 3rem 1rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    

    
    .download-btn-main {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    /* Footer Mobile Responsive */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .hero-container {
        padding: 1rem;
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    

    
    .hero-image {
        max-width: 105%;
    }
}

/* Feature Demo Modal Styles */
.feature-demo-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.demo-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-info {
    flex: 1;
    color: white;
}

.demo-info h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.demo-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.demo-stats {
    display: flex;
    gap: 1.5rem;
}

.demo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-desc {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Demo-specific styles */
.latency-demo {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: latencyPulse 2s ease-in-out infinite;
}

.phone-screen, .pc-screen {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

.latency-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.latency-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: latencyFlow 1s ease-in-out infinite;
}

.latency-text {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
}

.quality-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quality-before, .quality-after {
    text-align: center;
}

.quality-before h4, .quality-after h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.quality-preview {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.quality-preview.blur {
    background: linear-gradient(45deg, #666, #999);
    filter: blur(2px);
}

.quality-preview.sharp {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.quality-arrow {
    font-size: 1.5rem;
    color: #00d4ff;
    animation: arrowPulse 1s ease-in-out infinite;
}

.connection-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    font-size: 2rem;
    animation: stepPulse 2s ease-in-out infinite;
}

.step-text {
    font-size: 0.8rem;
    color: #00d4ff;
    text-align: center;
}

.step-arrow {
    font-size: 1.2rem;
    color: #00d4ff;
    animation: arrowFlow 1.5s ease-in-out infinite;
}

.game-screen {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.game-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-controller {
    font-size: 2rem;
    animation: gamePulse 1s ease-in-out infinite;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.metric {
    font-size: 0.8rem;
    color: #00ff88;
    font-weight: 600;
}

.recording-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.record-btn {
    width: 40px;
    height: 40px;
    border: 3px solid #ff4444;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: recordPulse 1s ease-in-out infinite;
}

.record-dot {
    width: 16px;
    height: 16px;
    background: #ff4444;
    border-radius: 50%;
}

.recording-status {
    color: #ff4444;
    font-weight: 600;
    animation: statusBlink 1s ease-in-out infinite;
}

.audio-visualizer {
    display: flex;
    gap: 3px;
    align-items: end;
    height: 40px;
}

.audio-bar {
    width: 6px;
    background: linear-gradient(to top, #00d4ff, #00ff88);
    border-radius: 3px;
    animation: audioWave 1s ease-in-out infinite;
}

.audio-bar:nth-child(1) { height: 15px; animation-delay: 0s; }
.audio-bar:nth-child(2) { height: 25px; animation-delay: 0.2s; }
.audio-bar:nth-child(3) { height: 20px; animation-delay: 0.4s; }
.audio-bar:nth-child(4) { height: 30px; animation-delay: 0.6s; }
.audio-bar:nth-child(5) { height: 18px; animation-delay: 0.8s; }

.security-shield {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.shield-icon {
    font-size: 3rem;
    animation: shieldGlow 2s ease-in-out infinite;
}

.security-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layer {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #00ff88;
    text-align: center;
    animation: layerPulse 2s ease-in-out infinite;
}

.layer:nth-child(1) { animation-delay: 0s; }
.layer:nth-child(2) { animation-delay: 0.5s; }
.layer:nth-child(3) { animation-delay: 1s; }

/* Additional animations for demos */
@keyframes latencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes latencyFlow {
    0% { background: linear-gradient(90deg, #00d4ff, #00ff88); }
    50% { background: linear-gradient(90deg, #00ff88, #00d4ff); }
    100% { background: linear-gradient(90deg, #00d4ff, #00ff88); }
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes arrowFlow {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes layerPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
}

/* Responsive styles for feature demos */
@media (max-width: 768px) {
    .feature-demo-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .demo-visual {
        flex: none;
    }
    
    .demo-stats {
        justify-content: center;
    }
    
    .quality-comparison {
        flex-direction: column;
        gap: 1rem;
    }
    
    .connection-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
} 

/* FAQ Section */
.faq-section {
    padding: 2rem 0rem;
    position: relative;
}

/* Mobile FAQ section - remove padding */
@media (max-width: 768px) {
    .faq-section {
        padding: 0;
    }
}

.faq-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Mobile FAQ container - remove padding */
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.4rem;
    color: #00d4ff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.faq-item.active {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-icon {
    position: relative;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.faq-icon-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 50%;
    color: #1a1a2e;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    animation: faqPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.faq-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: faqGlow 3s ease-in-out infinite;
}

.faq-question-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.faq-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
    margin-left: 1rem;
    flex-shrink: 0;
}

.toggle-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 1px;
    transition: all 0.3s ease;
    position: absolute;
}

.toggle-line:first-child {
    transform: rotate(0deg);
}

.toggle-line:last-child {
    transform: rotate(90deg);
}

.faq-item.active .toggle-line:first-child {
    transform: rotate(45deg);
}

.faq-item.active .toggle-line:last-child {
    transform: rotate(-45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 212, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.answer-content {
    padding: 0 2rem 2rem;
    color: #00d4ff;
    line-height: 1.6;
}

.answer-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.answer-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.answer-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.answer-feature:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.feature-dot {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
}

.faq-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.faq-cta-text {
    font-size: 1.2rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.faq-cta-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.faq-cta-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.faq-cta-btn .btn-icon {
    font-size: 0.8rem;
}

/* FAQ Animations */
@keyframes faqPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
    }
}

@keyframes faqGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-icon-text {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .answer-features {
        flex-direction: column;
    }
    
    .faq-cta-content h3 {
        font-size: 2rem;
    }
    
    .faq-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-icon-text {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .answer-content {
        padding: 0 1rem 1rem;
    }
    
    .faq-cta {
        padding: 2rem 1rem;
    }
    
    .faq-cta-content h3 {
        font-size: 1.8rem;
    }
    
    .faq-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* New Hero Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInUpBounce {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    70% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes pcFloat {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

@keyframes appPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes connectionFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes dataFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

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

@keyframes mirrorPulse {
    0%, 100% {
        transform: scale(1);
        background: rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        background: rgba(0, 212, 255, 0.5);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* New 3D Background Animations */
@keyframes sphereRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg) rotateX(360deg); }
}

@keyframes corePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 80px rgba(0, 212, 255, 0.8);
    }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes sphereParticle {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% { 
        transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(0, 212, 255, 1);
    }
}

@keyframes digitalRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Enhanced Badge Animations */
@keyframes badgeSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Character Animation */
@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Progress Fill Animation */
@keyframes progressFill {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}

/* CTA Particle Animation */
@keyframes ctaParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(1);
        opacity: 0;
    }
}

/* Trust Glow Animation */
@keyframes trustGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Image Animations */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(2deg);
    }
}

@keyframes overlayGlow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes overlayParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(1);
        opacity: 0;
    }
}

@keyframes cornerGlow {
    0%, 100% {
        border-color: rgba(0, 212, 255, 0.6);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        border-color: rgba(0, 212, 255, 1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

@keyframes statIndicator {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Liquid Morphing Animations */
@keyframes blobMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.1) rotate(90deg);
    }
    50% {
        border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
        transform: scale(0.9) rotate(180deg);
    }
    75% {
        border-radius: 40% 50% 30% 60% / 60% 30% 70% 40%;
        transform: scale(1.05) rotate(270deg);
    }
}

@keyframes organicMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }
    33% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.2) rotate(120deg);
    }
    66% {
        border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
        transform: scale(0.8) rotate(240deg);
    }
}

@keyframes fluidFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

@keyframes waveMorph {
    0%, 100% {
        transform: translateX(-50%) scaleX(1);
        border-radius: 50% 50% 0 0;
    }
    25% {
        transform: translateX(-25%) scaleX(1.2);
        border-radius: 60% 40% 0 0;
    }
    50% {
        transform: translateX(0%) scaleX(0.8);
        border-radius: 40% 60% 0 0;
    }
    75% {
        transform: translateX(-75%) scaleX(1.1);
        border-radius: 70% 30% 0 0;
    }
}

@keyframes liquidFlow {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateX(10px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes liquidMorph {
    0%, 100% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: scale(1);
    }
    25% {
        border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
        transform: scale(1.05);
    }
    50% {
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
        transform: scale(0.95);
    }
    75% {
        border-radius: 50% 50% 60% 40% / 50% 50% 60% 40%;
        transform: scale(1.02);
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
}

@keyframes bubblePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes innerBlob {
    0%, 100% {
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% {
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
        transform: translate(-50%, -50%) scale(0.9);
    }
    75% {
        border-radius: 50% 50% 60% 40% / 50% 50% 60% 40%;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes liquidFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

@keyframes floatingBlob {
    0%, 100% {
        transform: translateY(0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        border-radius: 60% 40% 40% 60% / 60% 40% 40% 60%;
    }
    50% {
        transform: translateY(-10px) scale(0.9);
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        border-radius: 50% 50% 60% 40% / 50% 50% 60% 40%;
    }
}

@keyframes wavePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.badge-accent {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: accentPulse 2s ease-in-out infinite;
}

/* Hero Heading */
.hero-heading {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.heading-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.heading-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* Hero Description */
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #667eea;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-play {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-play {
    transform: scale(1.1);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.cta-primary {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-text {
    font-weight: 600;
}

.cta-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-icon {
    transform: translateX(3px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Column */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 4;
}

/* Device Showcase */
.device-showcase {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

/* Phone Device */
.phone-device {
    position: relative;
    width: 100px;
    height: 200px;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 2px solid #4a5568;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
}

.status-dot {
    width: 4px;
    height: 4px;
    background: #48bb78;
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

.phone-status span {
    font-size: 0.5rem;
    color: #48bb78;
    font-weight: 600;
}

.phone-apps {
    display: flex;
    gap: 0.4rem;
}

.app-icon {
    width: 24px;
    height: 24px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* Connection */
.connection {
    position: relative;
    width: 60px;
    height: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 1px;
}

.connection-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dot {
    width: 3px;
    height: 3px;
    background: #667eea;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.7s; }
.dot:nth-child(3) { animation-delay: 1.4s; }

/* Laptop Device */
.laptop-device {
    position: relative;
    width: 140px;
    height: 100px;
    animation: laptopFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.laptop-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 2px solid #4a5568;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
}

.laptop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.laptop-title {
    font-size: 0.6rem;
    color: #667eea;
    font-weight: 600;
}

.laptop-status {
    font-size: 0.5rem;
    color: #48bb78;
    font-weight: 600;
}

.laptop-apps {
    display: flex;
    gap: 0.4rem;
}

.laptop-app {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.laptop-metrics {
    display: flex;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 0.3rem 0.6rem;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.metric-label {
    font-size: 0.5rem;
    color: #9ca3af;
}

.metric-value {
    font-size: 0.6rem;
    color: #10b981;
    font-weight: 700;
}

.laptop-base {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: #374151;
    border-radius: 0 0 3px 3px;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.feature-card .card-icon {
    color: #667eea;
}

.feature-card .card-content h4 {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.1rem 0;
}

.feature-card .card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    margin: 0;
}

/* Floating UI Elements */
.floating-ui {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 4;
}

.ui-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: uiCardFloat 4s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.ui-card:nth-child(1) { animation-delay: 0s; }
.ui-card:nth-child(2) { animation-delay: 1s; }
.ui-card:nth-child(3) { animation-delay: 2s; }

.ui-card:hover {
    transform: translateX(-5px) scale(1.05);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.card-icon {
    font-size: 1.2rem;
    animation: cardIconPulse 2s ease-in-out infinite;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.card-title {
    font-size: 0.7rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
    z-index: 3;
}

.scroll-text {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.arrow-line {
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
    border-radius: 1px;
    animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-line:nth-child(2) {
    animation-delay: 0.3s;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(180deg); }
}

@keyframes corePulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 100px rgba(0, 255, 136, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 150px rgba(0, 255, 136, 0.5);
    }
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes digitalRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes badgeSweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes ctaParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    50% { opacity: 1; }
    100% {
        transform: translate(var(--x, 50px), var(--y, -50px)) scale(1);
        opacity: 0;
    }
}

@keyframes showcaseFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pcFloat {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes appPulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(0, 212, 255, 0.2);
    }
    50% { 
        transform: scale(1.1);
        background: rgba(0, 212, 255, 0.4);
    }
}

@keyframes indicatorPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

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

@keyframes beamFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes beamGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes beamParticle {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes dataBitFlow {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes headerPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
}

@keyframes mirrorAppPulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(0, 212, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        background: rgba(0, 212, 255, 0.5);
    }
}

@keyframes uiCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes cardIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes elegantFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

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

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes particleFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes statusBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .device-showcase {
        gap: 1.5rem;
    }
    
    .pc-device {
        width: 280px;
        height: 200px;
    }
    
    .phone-device {
        width: 120px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-stats {
        justify-content: center;
    }
    
    .device-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .connection-beam {
        width: 8px;
        height: 100px;
        transform: rotate(90deg);
    }
    
    .floating-ui {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .ui-card {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem 1rem;
    }
}

/* Additional Modal Styles for Footer */
.feedback-content, .status-content {
    color: white;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.feedback-input, .feedback-select, .feedback-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.feedback-input:focus, .feedback-select:focus, .feedback-textarea:focus {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.feedback-textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-submit-btn {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.feedback-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Status Modal Styles */
.status-overview {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.status-overview h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    width: fit-content;
    margin: 0 auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-text {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.service-name {
    color: #b8c5d6;
    font-weight: 500;
}

.service-indicator {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-indicator.online::before {
    content: '●';
    color: #00ff88;
    margin-right: 0.5rem;
    animation: statusBlink 2s ease-in-out infinite;
}

.status-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.status-footer p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .feedback-form {
        gap: 1rem;
    }
    
    .service-status {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-device {
        width: 100px;
        height: 200px;
    }
    
    .pc-device {
        width: 240px;
        height: 180px;
    }
    
    .floating-ui {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Modern Hero Section */
.modern-hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    padding: 100px 0 60px;
}

/* Dynamic Background */
.hero-dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Morphing Shapes */
.morphing-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    animation: morphShape 20s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    animation-delay: 5s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 180px;
    height: 180px;
    animation-delay: 10s;
}

.shape-4 {
    top: 30%;
    right: 30%;
    width: 120px;
    height: 120px;
    animation-delay: 15s;
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: waveFlow 8s ease-in-out infinite;
}

.wave-1 { top: 25%; animation-delay: 0s; }
.wave-2 { top: 50%; animation-delay: 2s; }
.wave-3 { top: 75%; animation-delay: 4s; }

/* Floating Orbs */
.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: orbFloat 12s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.orb-1 { top: 20%; left: 20%; animation-delay: 0s; }
.orb-2 { top: 60%; right: 25%; animation-delay: 4s; }
.orb-3 { bottom: 30%; left: 60%; animation-delay: 8s; }

/* Hero Container */
.hero-modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Panel */
.hero-left-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    border-radius: 50px;
    animation: badgePulse 3s ease-in-out infinite;
}

.badge-text {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

/* Main Title */
.hero-main-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-primary {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.title-word {
    display: inline-block;
    animation: titleReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }

.title-accent {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: accentLineExpand 1s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.accent-text {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    animation: accentTextReveal 0.8s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

/* Description */
.hero-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.desc-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
    animation: descReveal 0.8s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.desc-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
    animation: highlightReveal 0.8s ease-out 1.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.highlight:nth-child(1) { animation-delay: 1.4s; }
.highlight:nth-child(2) { animation-delay: 1.6s; }
.highlight:nth-child(3) { animation-delay: 1.8s; }

/* Performance Metrics */
.hero-metrics {
    display: flex;
    gap: 2rem;
    animation: metricsReveal 0.8s ease-out 2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-circle {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.metric-bg {
    fill: none;
    stroke: rgba(0, 212, 255, 0.2);
    stroke-width: 3;
}

.metric-progress {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 20;
    animation: metricProgress 2s ease-out 2.5s forwards;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    z-index: 2;
    position: relative;
}

.metric-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Action Buttons */
.hero-actions-modern {
    display: flex;
    gap: 1rem;
    animation: actionsReveal 0.8s ease-out 2.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.action-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.action-btn.primary-modern {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.action-btn.primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.action-btn.secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.action-btn.secondary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.action-btn.secondary-modern:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}



/* Right Panel */
.hero-right-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rightPanelReveal 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateX(50px);
}

/* Device Showcase */
.device-showcase {
    position: relative;
    width: 100%;
    height: 500px;
}

.device {
    position: absolute;
    animation: deviceFloat 6s ease-in-out infinite;
}

.phone-device {
    top: 20%;
    left: 10%;
    width: 120px;
    height: 240px;
    animation-delay: 0s;
}

.laptop-device {
    bottom: 20%;
    right: 15%;
    width: 300px;
    height: 200px;
    animation-delay: 2s;
}

.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
    border-radius: 12px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    overflow: hidden;
}

.device-screen {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: #0a0a1a;
    border-radius: 8px;
    overflow: hidden;
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.app-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 4px;
    animation: appPulse 2s ease-in-out infinite;
}

.app-icon:nth-child(1) { animation-delay: 0s; }
.app-icon:nth-child(2) { animation-delay: 0.5s; }
.app-icon:nth-child(3) { animation-delay: 1s; }
.app-icon:nth-child(4) { animation-delay: 1.5s; }

.connection-indicator {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

.indicator-dot.active {
    background: #00d4ff;
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

.device-base {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
    border-radius: 0 0 8px 8px;
}

.device-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.mirror-window {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.window-header {
    height: 20px;
    background: #2a2a4a;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.window-dots {
    display: flex;
    gap: 0.25rem;
}

.window-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.window-dots .dot:nth-child(1) { background: #ff5f56; }
.window-dots .dot:nth-child(2) { background: #ffbd2e; }
.window-dots .dot:nth-child(3) { background: #27ca3f; }

.window-content {
    padding: 1rem;
    height: calc(100% - 20px);
}

.mirror-feed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feed-line {
    height: 4px;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 2px;
    animation: feedPulse 2s ease-in-out infinite;
}

.feed-line:nth-child(1) { animation-delay: 0s; }
.feed-line:nth-child(2) { animation-delay: 0.5s; }
.feed-line:nth-child(3) { animation-delay: 1s; }

/* Connection Beam */
.connection-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 2px;
    animation: beamGlow 3s ease-in-out infinite;
}

.beam-core {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    border-radius: 2px;
    animation: beamCore 2s ease-in-out infinite;
}

.beam-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.beam-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00ff88;
    border-radius: 50%;
    animation: beamParticle 4s ease-in-out infinite;
}

.beam-particle:nth-child(1) { top: -5px; left: 10%; animation-delay: 0s; }
.beam-particle:nth-child(2) { top: -5px; left: 30%; animation-delay: 1s; }
.beam-particle:nth-child(3) { top: -5px; left: 50%; animation-delay: 2s; }
.beam-particle:nth-child(4) { top: -5px; left: 70%; animation-delay: 3s; }
.beam-particle:nth-child(5) { top: -5px; left: 90%; animation-delay: 4s; }

/* Floating UI */
.floating-ui {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ui-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    animation: uiCardFloat 8s ease-in-out infinite;
}

.ui-card:nth-child(1) { animation-delay: 0s; }
.ui-card:nth-child(2) { animation-delay: 2s; }
.ui-card:nth-child(3) { animation-delay: 4s; }

.ui-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.card-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

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

.card-value {
    font-size: 1rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
}

.card-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollIndicatorFloat 3s ease-in-out infinite;
}

.scroll-text {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.arrow-line {
    width: 20px;
    height: 2px;
    background: #00d4ff;
    border-radius: 1px;
    animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-line:nth-child(1) { transform: rotate(45deg) translateX(-5px); }
.arrow-line:nth-child(2) { transform: rotate(-45deg) translateX(-5px); }

/* Animations */
@keyframes morphShape {
    0%, 100% { border-radius: 50%; transform: scale(1) rotate(0deg); }
    25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1.1) rotate(90deg); }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: scale(0.9) rotate(180deg); }
    75% { border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%; transform: scale(1.05) rotate(270deg); }
}

@keyframes waveFlow {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accentLineExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes accentTextReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes descReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes metricsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes metricProgress {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes actionsReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rightPanelReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes appPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes feedPulse {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

@keyframes beamGlow {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 10px rgba(0, 212, 255, 0.3); }
    50% { opacity: 0.8; box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
}

@keyframes beamCore {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes beamParticle {
    0%, 100% { transform: translateX(0) translateY(0); opacity: 0; }
    50% { transform: translateX(100px) translateY(-10px); opacity: 1; }
}

@keyframes uiCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes scrollIndicatorFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes arrowBounce {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes btnParticleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    100% { transform: translateY(-40px) translateX(20px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .title-primary {
        font-size: 3.5rem;
    }
    
    .hero-metrics {
        justify-content: center;
    }
    
    .hero-actions-modern {
        justify-content: center;
    }
    
    .device-showcase {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .modern-hero-section {
        padding: 80px 0 40px;
    }
    
    .title-primary {
        font-size: 3rem;
    }
    
    .desc-text {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .device-showcase {
        height: 300px;
    }
    
    .phone-device {
        width: 80px;
        height: 160px;
    }
    
    .laptop-device {
        width: 200px;
        height: 120px;
    }
    
    .floating-ui {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .ui-card {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .title-primary {
        font-size: 2.5rem;
    }
    
    .desc-text {
        font-size: 1rem;
    }
    
    .desc-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight {
        width: 100%;
        text-align: center;
    }
    
    .device-showcase {
        height: 250px;
    }
    
    .phone-device {
        width: 60px;
        height: 120px;
    }
    
    .laptop-device {
        width: 150px;
        height: 100px;
    }
    
    .floating-ui {
        flex-direction: column;
        align-items: center;
    }
    
    .ui-card {
        width: 100%;
        max-width: 200px;
    }
}

/* Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    animation: heroParticleFloat 8s ease-in-out infinite;
    opacity: 0.6;
}

.hero-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 60%; right: 20%; animation-delay: 2s; }
.hero-particle:nth-child(3) { bottom: 30%; left: 80%; animation-delay: 4s; }
.hero-particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 1s; }
.hero-particle:nth-child(5) { bottom: 60%; right: 40%; animation-delay: 3s; }
.hero-particle:nth-child(6) { top: 40%; left: 40%; animation-delay: 5s; }

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.hero-grid .grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    height: 1px;
    width: 100%;
}

.hero-grid .grid-line:nth-child(1) { top: 25%; }
.hero-grid .grid-line:nth-child(2) { top: 50%; }
.hero-grid .grid-line:nth-child(3) { top: 75%; }

.hero-glow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlowFloat 12s ease-in-out infinite;
}

.glow-orb:nth-child(1) { top: 10%; right: 10%; animation-delay: 0s; }
.glow-orb:nth-child(2) { bottom: 20%; left: 15%; animation-delay: 6s; }

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
}

/* iOS Safari fix for hero section white overlay */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
        background-attachment: scroll;
        -webkit-background-attachment: scroll;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
        
    }
}

/* Mobile hero section optimization */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
        min-height: auto;
        align-items: flex-start;
        padding-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0.5rem;
        padding-top: 1.5rem;
    }
}

/* Hero Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Tablet Layout - Stack vertically */
@media (max-width: 1024px) {
    .hero-section {
        padding: 6rem 2rem 3rem 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 100%;
        text-align: center;
        margin-top: 4rem;
    }
    
    .hero-description {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .hero-image {
        width: 80% !important;
        max-width: 100% !important;
        height: auto;
        max-height: 400px;
    }
    
    .video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Hide desktop profile dropdown on mobile/tablet */
    .nav-profile {
        display: none !important;
    }
    
    .profile-dropdown {
        display: none !important;
    }
    
    /* Mobile profile section and auth buttons - let JavaScript handle visibility */
    .mobile-profile-section,
    .mobile-auth-buttons {
        /* Remove forced display rules - let JavaScript control */
    }
    
    /* Prevent body scrolling when hamburger menu is open */
    body.hamburger-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    }
    
    /* Ensure main content maintains dark background */
    body.hamburger-open .main-content {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
    }
    
    body.hamburger-open .hero-section {
        background: transparent !important;
    }
}

/* Mobile Layout - Further optimizations */
@media (max-width: 768px) {
    .hero-container {
        gap: 2rem;
        padding: 0 1rem;
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        order: 1;
    }
    
    .hero-image {
        width: 100%;
        order: 2;
        height: auto;
        max-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Video placeholder optimized for mobile */
    .video-placeholder {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .video-wrapper {
        max-width: 100%;
        aspect-ratio: 16/9;
        height: auto;
    }
}

/* Small Mobile Layout */
@media (max-width: 480px) {
    .hero-container {
        gap: 1.5rem;
        padding: 0 0.5rem;
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        order: 1;
        margin-top: 1rem;
    }
    
    .hero-image {
        width: 100%;
        order: 2;
        height: auto;
        max-height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin-top: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    /* Video placeholder optimized for small mobile */
    .video-placeholder {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .video-wrapper {
        max-width: 100%;
        aspect-ratio: 16/9;
        height: auto;
        border-radius: 15px;
    }
    
    /* Optimize hero buttons for mobile */
    .hero-buttons {
        align-items: center;
    }
    
    .hero-buttons-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 50%;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.title-normal {
    color: #ffffff;
}

.title-highlight {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #00d4ff;
    margin: 0;
    max-width: 500px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
    opacity: 0;
    animation: slideInUpBounce 1s ease-out 1.3s forwards;
}

.hero-buttons-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hero-buttons-center {
    display: flex;
    justify-content: center;
}

.hero-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: slideInUpScale 0.8s ease-out forwards;
    position: relative;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-btn:hover::after {
    opacity: 1;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    animation-delay: 1.3s;
}

.hero-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    filter: brightness(1.1);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-btn.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.hero-btn.secondary:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

.hero-btn.outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    position: relative;
    animation-delay: 1.4s;
}

.hero-btn.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    border-radius: 8px;
    z-index: -1;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.hero-btn.outline:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.6);
    filter: brightness(1.1);
}

.hero-btn.outline:hover::before {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
}

/* Telegram Button Styles */
.hero-btn.telegram-support {
    background: linear-gradient(45deg, #0088cc, #00a8e8);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    animation-delay: 1.5s;
}

.hero-btn.telegram-support:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.6);
    background: linear-gradient(45deg, #00a8e8, #0088cc);
    filter: brightness(1.1);
}

.hero-btn.telegram-channel {
    background: linear-gradient(45deg, #00a8e8, #0088cc);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.4);
    animation-delay: 1.6s;
}

.hero-btn.telegram-channel:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 168, 232, 0.6);
    background: linear-gradient(45deg, #0088cc, #00a8e8);
    filter: brightness(1.1);
}

/* Telegram buttons row styling */
.telegram-buttons {
    margin-top: 1rem;
    gap: 1rem;
}

.telegram-buttons .hero-btn {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    color: #00a8e8;
    backdrop-filter: blur(10px);
}

.telegram-buttons .hero-btn:hover {
    background: linear-gradient(45deg, #0088cc, #00a8e8);
    border-color: #00a8e8;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 168, 232, 0.6);
}

.telegram-buttons .hero-btn .btn-icon {
    color: #00a8e8;
    transition: all 0.3s ease;
}

.telegram-buttons .hero-btn:hover .btn-icon {
    color: white;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 168, 232, 0.6));
}

.btn-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    animation: iconEntrance 0.6s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
    transform: rotate(-10deg) scale(0.8);
}

@keyframes iconEntrance {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

.hero-btn:hover .btn-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.btn-text {
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    animation: textEntrance 0.6s ease-out forwards;
    animation-delay: 1.6s;
    opacity: 0;
    transform: translateX(-10px);
}

@keyframes textEntrance {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-btn:hover .btn-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-image {
    width: 50%;
    height: 500px;
}

#lottie-animation {
    width: 100%;
    height: 100%;
}

/* Video Placeholder Styles */
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1200px;
}

/* Mobile video placeholder optimization */
@media (max-width: 768px) {
    .video-placeholder {
        perspective: 800px;
    }
}

.video-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1),
        0 0 80px rgba(138, 43, 226, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    transform-style: preserve-3d;
}

/* Mobile video wrapper optimization */
@media (max-width: 768px) {
    .video-wrapper {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        box-shadow: 
            0 15px 30px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 20px rgba(0, 212, 255, 0.1);
    }
    
    .video-wrapper:hover {
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.02);
    }
}

/* iOS Tablet specific fixes for video animations */
@media (max-width: 1024px) and (-webkit-touch-callout: none) {
    .video-placeholder {
        perspective: none !important;
        -webkit-perspective: none !important;
    }
    
    .video-wrapper {
        transform: none !important;
        -webkit-transform: none !important;
        transform-style: flat !important;
        -webkit-transform-style: flat !important;
        perspective: none !important;
        -webkit-perspective: none !important;
        transition: all 0.3s ease !important;
        -webkit-transition: all 0.3s ease !important;
    }
    
    .video-wrapper:hover {
        transform: scale(1.02) !important;
        -webkit-transform: scale(1.02) !important;
    }
    
    .video-wrapper::before,
    .video-wrapper::after {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    .video-device-frame {
        transform: translate(-50%, -50%) !important;
        -webkit-transform: translate(-50%, -50%) !important;
    }
    
    .video-device-frame:hover {
        transform: translate(-50%, -50%) scale(1.05) !important;
        -webkit-transform: translate(-50%, -50%) scale(1.05) !important;
    }
}

.video-wrapper::before {
    display: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        rgba(0, 212, 255, 0.3),
        rgba(138, 43, 226, 0.3),
        rgba(255, 20, 147, 0.3),
        rgba(0, 212, 255, 0.3)
    );
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 4s linear infinite;
    filter: blur(1px);
}

.video-wrapper:hover {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.05);
    box-shadow: 
        0 35px 65px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(0, 212, 255, 0.2),
        0 0 100px rgba(138, 43, 226, 0.2);
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
}

.play-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scale(1) translateZ(0);
    
    padding: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.2),
        rgba(138, 43, 226, 0.2)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.play-button:hover {
    transform: scale(1.15) translateZ(20px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.3);
}

.play-button:hover::before {
    opacity: 1;
}

.play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.play-button:hover svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.video-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.1),
        rgba(138, 43, 226, 0.1)
    );
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-info:hover::before {
    opacity: 1;
}

.video-info:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Mobile video overlay optimizations */
@media (max-width: 768px) {
    .video-overlay {
        backdrop-filter: blur(5px);
        padding-bottom: 10px;
    }
    
    .play-button {
        padding: 15px;
        transform: scale(0.9);
    }
    
    .play-button:hover {
        transform: scale(1.05);
    }
    
    .video-info {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .play-button {
        padding: 12px;
        transform: scale(0.8);
    }
    
    .play-button:hover {
        transform: scale(0.9);
    }
    
    .video-info {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .video-info .video-title {
        font-size: 0.9rem;
    }
    
    .video-info .video-duration {
        font-size: 0.7rem;
    }
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.video-overlay {
    
    padding-bottom: 10px; /* Added this line */
}
.video-duration {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.video-thumbnail::before {
    display: none;
}

.video-device-frame {
    display: none;
}

.video-device-frame:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.device-screen {
    display: none;
}

.device-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1' height='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E"),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.05) 100%
        );
    opacity: 0.4;
    animation: scanLines 8s linear infinite;
}

.device-screen::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: 
        radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0) 70%),
        radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 60%);
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes scanLines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.device-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 50%),
        linear-gradient(45deg, rgba(0,212,255,0.1) 0%, rgba(138,43,226,0.1) 100%);
    transform: translateY(-50%) rotate(45deg);
    animation: reflectionMove 8s ease-in-out infinite;
    border-radius: 8px;
    filter: blur(0.5px);
}

.device-reflection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: reflectionShine 6s ease-in-out infinite;
}

@keyframes reflectionShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Floating particles around video placeholder */
.video-placeholder::before,
.video-placeholder::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
    z-index: 1;
}

.video-placeholder::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.video-placeholder::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    background: rgba(138, 43, 226, 0.6);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* YouTube Embed Styles */
.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
}

.video-embed video {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-close-btn:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.1) !important;
}

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

@keyframes reflectionMove {
    0%, 100% { transform: translateY(-50%) rotate(45deg); }
    50% { transform: translateY(-40%) rotate(45deg); }
}









@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .hero-buttons-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 1rem 2rem;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-content,
    .hero-image {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-top: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .telegram-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .hero-buttons-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .telegram-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-icon {
        font-size: 1rem;
    }
}
@media (max-width: 390px){

    .navbar .nav-link:first-of-type {
        margin-top: 1.5rem !important;
    }  
}

@media (max-width: 370px){
    .navbar .nav-link:first-of-type {
        margin-top: 5rem !important;
    }
}