/* CSS Variables for consistent theming */
:root {
    --primary-color: #7b2ff7;
    --primary-light: #9a5ffb;
    --primary-dark: #5a1cb4;
    --cta-color: #ff7be5;
    --cta-hover: #ff9aeb;
    --text-color: #ffffff;
    --background-gradient: linear-gradient(135deg, #7b2ff7 0%, #5a1cb4 100%);
    --card-bg: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-gradient);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

/* Header Styles */
header {
    padding: 1rem;
    text-align: right;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

/* Main Content Styles */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.hero {
    max-width: 100%;
    text-align: center;
    padding: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes fadeInList {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.slide-in {
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.8s;
}

.fade-in-list {
    opacity: 0;
    animation: fadeInList 0.8s ease-out forwards;
}

.fade-in-list:nth-child(1) { animation-delay: 1.2s; }
.fade-in-list:nth-child(2) { animation-delay: 1.4s; }
.fade-in-list:nth-child(3) { animation-delay: 1.6s; }
.fade-in-list:nth-child(4) { animation-delay: 1.8s; }

.pulse {
    animation: pulse 2s infinite;
}

h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Content Container */
.content-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 350px;
}

.free-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cta-color);
    color: #000;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transform: rotate(10deg);
    animation: pulse 2s infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* CTA Container */
.cta-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.cta-button {
    display: block;
    background-color: var(--cta-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: var(--cta-hover);
    animation: none;
}

.cta-subtext {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: left;
    backdrop-filter: blur(10px);
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.2s;
}

.benefits ul {
    list-style-type: none;
}

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cta-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Quick Info Section */
.quick-info {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    margin: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1.5s;
}

.quick-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1.2rem;
    margin-top: auto;
}

.privacy-link {
    color: var(--text-color);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.85rem;
}

.privacy-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 1.3rem;
    }
    
    .benefits {
        padding: 1rem;
    }
    
    .benefits li {
        font-size: 0.9rem;
    }
    
    .responsive-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .brand {
        font-size: 1.3rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .benefits li {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }
    
    .content-container {
        gap: 1rem;
    }
    
    .responsive-img {
        max-height: 250px;
    }
    
    .free-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}