:root {
    --primary-color: #ff0000;
    --secondary-color: #00cc00;
    --dark-bg: #000000;
    --text-color: #ffffff;
    --accent-color: #ff3333;
    --box-bg: #001a00;
    --box-border: #00cc00;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #100, #400, #100);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,0,0,0.05)" d="M30,10L50,90L70,10Z"/></svg>');
    background-size: 300px 300px;
    opacity: 0.1;
    z-index: -1;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

h1 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

.subtitle {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Main Content Styles */
.intro-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.intro-text p {
    margin-bottom: 15px;
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Button Styles */
.cta-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    margin: 25px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 204, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background-color: var(--secondary-color);
    color: #000;
    border: 2px solid var(--secondary-color);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 204, 0, 0.6);
}

.cta-button.primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.cta-button.primary:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Benefits Box Styles */
.benefits-box {
    background-color: rgba(0, 20, 0, 0.8);
    border: 2px solid var(--box-border);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 204, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.benefits-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.benefits-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.free-note, .action-note {
    text-align: center;
    font-weight: 600;
    margin: 15px 0;
}

.free-note {
    margin-bottom: 5px;
}

/* CTA Section Styles */
.cta-section {
    text-align: center;
    margin: 30px 0;
}

.cta-text {
    margin-bottom: 15px;
    font-size: 18px;
}

.cta-text i {
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.age-restriction {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.disclaimer {
    margin-bottom: 15px;
    font-size: 12px;
}

.copyright, .affiliation {
    font-size: 12px;
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .benefits-box {
        padding: 20px 15px;
    }
}

/* Animation for elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header, .intro-text, .cta-button, .benefits-box, .cta-section {
    animation: fadeIn 0.8s ease-out forwards;
}

.intro-text {
    animation-delay: 0.2s;
}

.cta-button:first-of-type {
    animation-delay: 0.4s;
}

.benefits-box {
    animation-delay: 0.6s;
}

.cta-section {
    animation-delay: 0.8s;
}
