/* ============================================
   IRON FILMES - PRE-SELL PAGE
   Design: Cyberpunk Presell
   Colors: Black background, Cyan neon accents
   ============================================ */

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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
}

/* ============================================
   PARTICLE ANIMATION KEYFRAMES
   ============================================ */

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

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

/* ============================================
   CANVAS & BACKGROUND
   ============================================ */

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#root {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
}

.hero-content {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ============================================
   LOGO
   ============================================ */

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo {
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ============================================
   HEADLINES
   ============================================ */

.headline-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    letter-spacing: -0.02em;
}

.sub-headline-accent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* ============================================
   INFO BOX
   ============================================ */

.info-box {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.info-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* ============================================
   BUTTON SECTION
   ============================================ */

.button-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #00d9ff 0%, #0099cc 100%);
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    letter-spacing: 0.05em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00e6ff 0%, #00b3e6 100%);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

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

.button-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #888888;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00d9ff;
    margin-bottom: 0.25rem;
}

.trust-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #888888;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    border-top: 1px solid #333333;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    z-index: 10;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: #00d9ff;
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #555555;
    text-align: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .main-headline {
        font-size: 2rem;
    }

    .sub-headline-accent {
        font-size: 1.5rem;
    }

    .info-text {
        font-size: 1rem;
    }

    .logo {
        height: 100px;
    }

    .trust-indicators {
        gap: 0.75rem;
    }

    .trust-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1rem 0.75rem;
    }

    .main-headline {
        font-size: 1.75rem;
    }

    .sub-headline-accent {
        font-size: 1.25rem;
    }

    .info-text {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .logo {
        height: 80px;
    }

    .footer-links {
        gap: 1rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

button:focus {
    outline: 2px solid #00d9ff;
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid #00d9ff;
    outline-offset: 2px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
