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

:root {
    --primary-color: #ff1744;
    --secondary-color: #d50000;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    --gold: #ffd700;
    --transition: all 0.3s ease;
}

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

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

.site-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: var(--text-light);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    text-decoration: none;
    color: var(--text-light);
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.9rem;
    color: #aaa;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg);
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 0.5rem 0;
    list-style: none;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-bonus .bonus-button {
    background: linear-gradient(135deg, var(--gold) 0%, #ffb700 100%);
    color: var(--dark-bg) !important;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
    animation: pulse-bonus 2s infinite;
}

.nav-bonus .bonus-button:hover {
    background: linear-gradient(135deg, #ffb700 0%, var(--gold) 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.6);
    color: var(--dark-bg) !important;
}

@keyframes pulse-bonus {
    0%, 100% { box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 3px 20px rgba(255, 215, 0, 0.7); }
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.goto-site-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.goto-site-button:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b71c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 23, 68, 0.5);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 23, 68, 0.1);
}

.main-content {
    min-height: 60vh;
}

.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.4);
}

.section {
    padding: 3rem 0;
    background: white;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section:nth-child(even) {
    background: var(--light-bg);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.section ul, .section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.2);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
}

.site-footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: var(--gold) !important;
    font-weight: bold;
}

.page-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.page-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.page-content h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin: 1.5rem 0 0.8rem;
}

.content-placeholder {
    background: #f9f9f9;
    border: 2px dashed #ddd;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        width: 250px;
        padding: 1rem;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section h2 {
        font-size: 1.6rem;
    }
    
    .page-content {
        padding: 1.5rem;
    }
    
    .page-content h1 {
        font-size: 1.8rem;
    }
}
