
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e1e5e9;
            background: #0a0a0a;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 0 2rem;
        }

        .container-narrow {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header & Navigation */
        header {
            background: rgba(13, 13, 13, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #e1e5e9;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00d4ff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #00d4ff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 20px;
            height: 3px;
            background: #00d4ff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .auth-btn {
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .login-btn {
            background: transparent;
            color: #e1e5e9;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .login-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #00d4ff;
            color: #00d4ff;
        }

        .signup-btn {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #0a0a0a;
            border: 2px solid transparent;
        }

        .signup-btn:hover {
            background: linear-gradient(135deg, #0099cc, #006699);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }

        /* Hero Section - Full Width */
        .hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            min-height: 100vh;
            width: 100vw;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(0,212,255,0.03)" points="0,1000 1000,0 1000,1000"/></svg>') no-repeat center center;
            background-size: cover;
        }

        .hero-content {
            color: #e1e5e9;
            text-align: center;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: #ffffff;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: #b8bcc3;
        }

        /* Search Form */
        .search-form {
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(20px);
            padding: 2rem;
            border-radius: 20px;
            max-width: 600px;
            margin: 2rem auto;
            border: 1px solid rgba(0, 212, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .search-form h3 {
            color: #00d4ff;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
        }

        .search-form-group {
            margin-bottom: 1.5rem;
        }

        .search-form-group label {
            display: block;
            color: #b8bcc3;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .search-input-wrapper {
            position: relative;
        }

        .search-form input {
            width: 100%;
            padding: 1rem 4rem 1rem 1rem;
            background: rgba(30, 30, 30, 0.7);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #e1e5e9;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-form input:focus {
            outline: none;
            border-color: #00d4ff;
            background: rgba(30, 30, 30, 0.9);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
        }

        .search-form input::placeholder {
            color: rgba(184, 188, 195, 0.6);
        }

        .search-submit {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border: none;
            color: #0a0a0a;
            padding: 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-submit:hover {
            background: linear-gradient(135deg, #0099cc, #006699);
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #0a0a0a;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #0099cc, #006699);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: #e1e5e9;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #00d4ff;
            border-color: #00d4ff;
            transform: translateY(-2px);
        }

        /* Sections - Full Width */
        .section {
            padding: 5rem 0;
            background: #0f0f0f;
            width: 100%;
        }

        .section:nth-child(even) {
            background: #141414;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #b8bcc3;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(20, 20, 20, 0.8);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            color: #00d4ff;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .feature-card p {
            color: #b8bcc3;
            line-height: 1.6;
        }

        /* Pricing Section - Simple Grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .pricing-card {
            background: rgba(20, 20, 20, 0.8);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .pricing-card.popular {
            border-color: #00d4ff;
            background: rgba(0, 212, 255, 0.05);
        }

        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #0a0a0a;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .pricing-card.enterprise {
            border-color: #ff6b6b;
            background: rgba(255, 107, 107, 0.05);
        }

        .pricing-card.enterprise::before {
            content: 'Best Value';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: #ffffff;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
        }

        .pricing-card.enterprise:hover {
            box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            color: #00d4ff;
            margin-bottom: 0.5rem;
        }

        .pricing-card.enterprise .price {
            color: #ff6b6b;
        }

        .price-period {
            color: #b8bcc3;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .features-list li {
            padding: 0.5rem 0;
            color: #b8bcc3;
            position: relative;
            padding-left: 1.5rem;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
        }

        .features-list.enterprise li::before {
            color: #ff6b6b;
        }

        /* Pages */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
            width: 100%;
        }

        .page.active {
            display: block;
        }

        /* Additional Pages Content */
        .page-content {
            padding: 3rem 0;
        }

        .page-hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            width: 100%;
        }

        .page-hero h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .page-hero p {
            font-size: 1.2rem;
            color: #b8bcc3;
            max-width: 600px;
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .content-card {
            background: rgba(20, 20, 20, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .content-card h3 {
            color: #00d4ff;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .content-card p {
            color: #b8bcc3;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* Development specific styles */
        .dev-hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .dev-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
        }

        .tech-stack {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(20, 20, 20, 0.8);
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.1);
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .tech-item:hover {
            transform: scale(1.1);
        }

        .tech-icon {
            font-size: 3rem;
            color: #00d4ff;
        }

        .tech-name {
            color: #b8bcc3;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .services-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .service-card {
            background: rgba(20, 20, 20, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .service-icon {
            font-size: 2.5rem;
            color: #00d4ff;
        }

        .service-card h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin: 0;
        }

        .service-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: #b8bcc3;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
        }

        .process-timeline {
            position: relative;
            margin: 3rem 0;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin: 2rem 0;
            position: relative;
        }

        .timeline-number {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            color: #0a0a0a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 2rem;
            flex-shrink: 0;
        }

        .timeline-content {
            background: rgba(20, 20, 20, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 212, 255, 0.1);
            flex-grow: 1;
        }

        .timeline-content h4 {
            color: #00d4ff;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        /* Footer - Full Width */
        footer {
            background: #0a0a0a;
            color: #e1e5e9;
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #00d4ff;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            padding: 0.25rem 0;
        }

        .footer-section ul li a {
            color: #b8bcc3;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #00d4ff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
            color: #b8bcc3;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px); 
            }
            50% { 
                transform: translateY(-5px); 
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Mobile Responsive Design Fixes */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }

    .auth-buttons {
        display: flex;
        order: 3;
        gap: 0.5rem;
    }

    .auth-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .auth-btn i {
        display: none;
    }

    nav {
        position: relative;
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        min-height: 100vh; /* Increased from 80vh */
        width: 100%;
        padding: 80px 0 2rem; /* Add top padding for header */
    }

    .hero-content {
        padding: 2rem 1rem; /* Increased padding */
    }

    .hero h1 {
        font-size: 2.2rem; /* Slightly larger */
        line-height: 1.3; /* Better line height */
        margin-bottom: 1.5rem; /* More spacing */
        word-wrap: break-word; /* Handle long words */
        hyphens: auto; /* Allow hyphenation if needed */
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem; /* Increased margin */
        padding: 0 1rem;
        line-height: 1.6;
    }

    .search-form {
        margin: 2rem auto; /* Increased margin */
        padding: 1.5rem;
        max-width: 95%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1rem 2rem;
    }

    .container, .container-narrow {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem; /* Slightly larger */
        margin-bottom: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .page-hero {
        padding: 6rem 0 4rem; /* More padding for mobile */
    }

    .page-hero h1 {
        font-size: 2.5rem; /* Increased from 2.2rem */
        line-height: 1.3;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .page-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .tech-stack {
        gap: 1rem;
        padding: 1rem;
    }

    .tech-item {
        min-width: 80px;
    }

    .tech-icon {
        font-size: 2rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 2rem;
    }

    .hero h1 {
        font-size: 1.8rem; /* Increased from previous */
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem; /* Add side padding */
    }
    
    .section-title {
        font-size: 1.8rem; /* Increased */
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .search-form {
        padding: 1rem;
        margin: 1.5rem auto;
    }
    
    .search-form h3 {
        font-size: 1.3rem;
    }

    .auth-btn {
        padding: 0.4rem 0.8rem; /* Increased from previous tiny sizes */
        font-size: 0.7rem; /* More readable */
    }

    .page-hero {
        padding: 5rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem; /* Much larger than before */
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .container, .container-narrow {
        padding: 0 1rem; /* Increased from 0.5rem */
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero p {
        padding: 0 0.5rem;
        font-size: 1rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh; /* Even more height for landscape */
        padding: 80px 0 3rem;
    }
    
    .hero-content {
        padding: 3rem 1rem;
    }
}
    .logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: logoFloat 2s ease-in-out infinite;
}

.preloader-text {
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    width: 0%;
    animation: progressLoad 2.5s ease forwards;
    border-radius: 2px;
}

.loading-dots {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: dotBounce 1.4s infinite both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
.dot:nth-child(3) { animation-delay: 0s; }

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-10px) scale(1.02); 
    }
}

@keyframes progressLoad {
    0% { width: 0%; }
    20% { width: 30%; }
    40% { width: 60%; }
    60% { width: 80%; }
    100% { width: 100%; }
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0);
    } 
    40% {
        transform: scale(1);
    }
}

body.loading {
    overflow: hidden;
}

body.loading .main-content {
    visibility: hidden;
}
