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

body {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    overflow: hidden;
    position: relative;
}

body::before {
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 3px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    color: #e8e8e8;
    font-style: italic;
    letter-spacing: 1px;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #d0d0d0;
    font-family: 'Georgia', serif;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    min-width: 140px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.countdown-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.countdown-label {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c0c0c0;
    font-family: 'Georgia', serif;
}

.email-signup {
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    color: #f5f5f5;
    font-size: 1rem;
    outline: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    font-family: 'Georgia', serif;
}

.email-input::placeholder {
    color: rgba(212, 175, 55, 0.6);
}

.email-input:focus {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.notify-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 4px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(45deg, #f4d03f, #d4af37);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #d4af37;
    font-size: 1.4rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.social-link:hover::before {
    left: 100%;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: float 8s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

/* IT-themed shapes with enhanced effects */
.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    /* Enhanced circuit board pattern */
    background: 
        linear-gradient(45deg, transparent 35%, rgba(212, 175, 55, 0.15) 35%, rgba(212, 175, 55, 0.15) 45%, transparent 45%),
        linear-gradient(-45deg, transparent 35%, rgba(212, 175, 55, 0.15) 35%, rgba(212, 175, 55, 0.15) 45%, transparent 45%),
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.shape:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 65%;
    right: 8%;
    animation-delay: 2s;
    /* Enhanced binary code pattern */
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 8px,
            rgba(212, 175, 55, 0.08) 8px,
            rgba(212, 175, 55, 0.08) 16px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 8px,
            rgba(212, 175, 55, 0.08) 8px,
            rgba(212, 175, 55, 0.08) 16px
        ),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    /* Enhanced data flow pattern */
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 40%, rgba(212, 175, 55, 0.1) 60%, transparent 60%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.18));
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 45%;
    left: 55%;
    animation-delay: 1s;
    /* Enhanced network nodes pattern */
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.12) 0%, transparent 35%),
        linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.08) 40%, rgba(212, 175, 55, 0.08) 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(212, 175, 55, 0.08) 40%, rgba(212, 175, 55, 0.08) 60%, transparent 60%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-radius: 0;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.12));
}

.shape:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 8%;
    right: 25%;
    animation-delay: 3s;
    /* Enhanced code brackets pattern */
    background: 
        linear-gradient(90deg, transparent 25%, rgba(212, 175, 55, 0.12) 25%, rgba(212, 175, 55, 0.12) 35%, transparent 35%),
        linear-gradient(90deg, transparent 65%, rgba(212, 175, 55, 0.12) 65%, rgba(212, 175, 55, 0.12) 75%, transparent 75%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    clip-path: polygon(0% 20%, 20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.15));
}

/* Enhanced cursor interaction effects */
.shape:hover {
    transform: scale(1.15) rotate(8deg) skew(5deg);
    background: rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.3),
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    filter: 
        drop-shadow(0 0 20px rgba(212, 175, 55, 0.4))
        brightness(1.2)
        contrast(1.1);
    animation-play-state: paused;
    border-color: rgba(212, 175, 55, 0.6);
    backdrop-filter: blur(10px);
}

.shape:hover:nth-child(1) {
    clip-path: polygon(40% 0%, 100% 20%, 100% 80%, 60% 100%, 0% 80%, 0% 20%);
    background: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
}

.shape:hover:nth-child(2) {
    clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(212, 175, 55, 0.1) 4px,
            transparent 4px,
            transparent 8px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(212, 175, 55, 0.1) 4px,
            transparent 4px,
            transparent 8px
        ),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.shape:hover:nth-child(3) {
    clip-path: polygon(60% 0%, 100% 40%, 40% 100%, 0% 60%);
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.25) 0%, transparent 50%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.shape:hover:nth-child(4) {
    clip-path: polygon(15% 15%, 85% 15%, 85% 85%, 15% 85%);
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
}

.shape:hover:nth-child(5) {
    clip-path: polygon(15% 25%, 25% 15%, 75% 15%, 85% 25%, 85% 75%, 75% 85%, 25% 85%, 15% 75%);
    background: 
        linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, transparent 30%),
        linear-gradient(90deg, transparent 70%, rgba(212, 175, 55, 0.2) 100%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(2deg) scale(1.02);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.05);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-10px) rotate(-2deg) scale(1.02);
        opacity: 1;
    }
}

.success-message {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: none;
    animation: slideIn 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    font-family: 'Georgia', serif;
}

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

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: #d4af37;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

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

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .logo {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .email-form {
        flex-direction: column;
        align-items: center;
    }

    .email-input {
        min-width: 250px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
} 