/* WinZir Landing Page Styles */
/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

/* Landing Container */
.landing-container {
    background-image: url('https://static.springbuilder.site/fs/userFiles-v2/winzirv2-18753775/media/bg-1-17199939212354.png?1721640789781');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-bottom: 200px; /* Ensure space for footer */
}

/* Header Styles */
.header {
    position: absolute;
    top: 2rem;
    width: 100%;
    z-index: 10;
}

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

.logo-img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
    position: relative;
    min-height: 60vh;
    padding-bottom: 4rem;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
}

/* Trust Badge */
.trust-badge {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.trust-badge p {
    font-size: 0.875rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Headline */
.headline {
    margin-bottom: 2rem;
}

.headline h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.bonus-text {
    color: #ffdd00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Steps Section */
.steps-section {
    margin-bottom: 2.5rem;
}

.steps-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.steps-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.cta-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 15;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e83e39, #d32f2f);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    z-index: 20;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 62, 57, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 62, 57, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
    backdrop-filter: blur(2px);
}

.license-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.license-img {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.license-img:hover {
    transform: scale(1.05);
}

.license-img-large {
    width: 420px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.license-img-large:hover {
    transform: scale(1.02);
}

.legal-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 0 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

.copyright {
    font-weight: 600;
    font-size: 0.75rem;
    color: #f0f0f0;
    margin-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

.copyright {
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        background-attachment: scroll;
        padding-bottom: 250px;
    }
    
    .header {
        top: 1rem;
    }
    
    .logo-img {
        width: 80px;
    }
    
    .main-content {
        padding-bottom: 2rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .headline h1 {
        font-size: 1.8rem;
    }
    
    .trust-badge p {
        font-size: 0.75rem;
    }
    
    .steps-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin-bottom: 2rem;
        z-index: 25;
    }
    
    .license-section {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .license-img {
        width: 120px;
    }
    
    .license-img-large {
        width: 320px;
    }
    
    .legal-text {
        font-size: 0.7rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding-bottom: 300px;
    }
    
    .headline h1 {
        font-size: 1.5rem;
    }
    
    .license-section {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .license-img {
        width: 100px;
    }
    
    .license-img-large {
        width: 280px;
    }
    
    .legal-text {
        font-size: 0.65rem;
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.content-wrapper > * {
    animation: fadeInUp 0.8s ease forwards;
}

.content-wrapper > *:nth-child(1) { animation-delay: 0.2s; }
.content-wrapper > *:nth-child(2) { animation-delay: 0.4s; }
.content-wrapper > *:nth-child(3) { animation-delay: 0.6s; }
.content-wrapper > *:nth-child(4) { animation-delay: 0.8s; }

.cta-button {
    animation: pulse 2s infinite;
}

/* Focus and Accessibility */
.cta-button:focus {
    outline: 2px solid #ffdd00;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .footer,
    .header {
        display: none;
    }
    
    .landing-container {
        background: none;
        color: #000;
    }
}
