:root {
    --primary-color: #1a6b32;
    --primary-dark: #145a29;
    --primary-light: #2a8c4a;
    --secondary-color: #ffcc00;
    --secondary-dark: #e6b800;
    --accent-color: #c62828;
    --dark-bg: #0a0f1a;
    --dark-header: #121827;
    --light-bg: #f8f9fa;
    --text-light: #ffffff;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header & Navigation */
.site-header {
    background-color: var(--dark-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--secondary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--secondary-color);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.main-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 15, 26, 0.9), rgba(10, 15, 26, 0.9)), url('https://images.unsplash.com/photo-1533105079780-92b9be482077?q=80&w=1000');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 80px 0 120px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid var(--secondary-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-highlight {
    background: rgba(255, 204, 0, 0.15);
    border: 2px dashed var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 40px auto;
    max-width: 600px;
}

.bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.bonus-text {
    font-size: 1.4rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-dark));
    color: var(--dark-bg);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.6);
    color: var(--dark-bg);
}

.btn-cta {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(26, 107, 50, 0.4);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 107, 50, 0.6);
    color: var(--text-light);
}

/* Sticky Floating Button */
.sticky-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.sticky-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 107, 50, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(26, 107, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 107, 50, 0); }
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-header);
}

/* Footer */
.site-footer {
    background-color: var(--dark-header);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.security-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

.security-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 0.9rem;
}

.security-logo i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.crypto-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 40px;
}

.crypto-method {
    background: rgba(255, 204, 0, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.legal-content h2 {
    color: var(--primary-dark);
    margin: 30px 0 15px;
}

.legal-content p, .legal-content li {
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .main-nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav-active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-header);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        z-index: 1000;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .bonus-amount {
        font-size: 2.5rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .sticky-cta-container {
        bottom: 20px;
        right: 20px;
    }
    
    .sticky-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .security-logos {
        flex-direction: column;
        gap: 25px;
    }
}