* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0b0f19;
    --secondary: #1a2138;
    --accent: #00d8ff;
    --highlight: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--highlight);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Mole Container */
.mole-container {
    position: fixed;
    z-index: 2;
    pointer-events: none;
    width: 200px;
    height: 200px;
    transition: left 0.1s linear, top 0.1s linear, transform 0.1s linear;
    will-change: left, top, transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mole-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 216, 255, 0.5));
    transition: transform 0.1s linear;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo-container {
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 216, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-shadow: 
        0 0 10px var(--accent),
        0 0 20px var(--accent),
        0 0 30px var(--accent);
    position: relative;
    z-index: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

/* Coming Soon Text */
.coming-soon-container {
    margin-bottom: 4rem;
}

.coming-soon-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--highlight);
    margin-bottom: 1.5rem;
    position: relative;
    animation: glitch 3s infinite;
    text-transform: uppercase;
}

.coming-soon-text::before,
.coming-soon-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coming-soon-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.coming-soon-text::after {
    left: -2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

.subtext {
    font-family: 'Roboto Mono', monospace;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Subscription Form */
.subscription-container {
    margin-top: 3rem;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    background: rgba(26, 33, 56, 0.6);
    border: 2px solid rgba(0, 216, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--highlight);
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.5);
    background: rgba(26, 33, 56, 0.8);
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, #0099cc 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.cta-button::before {
    content: '';
    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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 216, 255, 0.5);
}

.button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s;
    pointer-events: none;
    z-index: -1;
}

.cta-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

.form-message {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 1rem;
    min-height: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

/* Footer */
.footer-section {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(11, 15, 25, 0.5);
    backdrop-filter: blur(10px);
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
    min-width: 80px;
}

.countdown-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Social Icons */
.social-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(0, 216, 255, 0.3));
}

.social-icon:hover {
    color: var(--accent);
    transform: translateY(-5px) scale(1.1);
}

.social-icon:hover svg {
    filter: drop-shadow(0 0 15px var(--accent));
}

/* Copyright */
.copyright {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--accent),
            0 0 20px var(--accent),
            0 0 30px var(--accent);
    }
    50% {
        text-shadow: 
            0 0 20px var(--accent),
            0 0 30px var(--accent),
            0 0 40px var(--accent);
    }
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    20% {
        clip: rect(54px, 9999px, 66px, 0);
    }
    40% {
        clip: rect(28px, 9999px, 84px, 0);
    }
    60% {
        clip: rect(45px, 9999px, 88px, 0);
    }
    80% {
        clip: rect(38px, 9999px, 98px, 0);
    }
    100% {
        clip: rect(62px, 9999px, 54px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    20% {
        clip: rect(79px, 9999px, 85px, 0);
    }
    40% {
        clip: rect(66px, 9999px, 103px, 0);
    }
    60% {
        clip: rect(96px, 9999px, 102px, 0);
    }
    80% {
        clip: rect(9px, 9999px, 83px, 0);
    }
    100% {
        clip: rect(37px, 9999px, 115px, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
    }

    .logo-glow {
        width: 200px;
        height: 200px;
    }

    .subscription-form {
        gap: 1rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-value {
        min-width: 60px;
        font-size: 2rem;
    }

    .social-container {
        gap: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    /* Mobil için köstebek boyutu */
    .mole-container {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-value {
        min-width: 50px;
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    /* Küçük mobil için köstebek boyutu */
    .mole-container {
        width: 120px;
        height: 120px;
    }
}

