* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700;
    --secondary-color: #FFA500;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent: #FF6B35;
    --border-color: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-darker);
    border-bottom: 3px solid var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    background: rgba(255, 215, 0, 0.05);
    padding: 5px;
    border-radius: 10px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.nav-link.active {
    color: var(--bg-dark);
    background: var(--primary-color);
    font-weight: 600;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding-top: 0;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-content {
    padding: 20px;
    position: relative;
    padding-top: 60px;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    transition: all 0.3s;
    z-index: 1001;
    border: 2px solid var(--primary-color);
}

.mobile-nav-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-nav-close::before,
.mobile-nav-close::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: background 0.3s;
}

.mobile-nav-close:hover::before,
.mobile-nav-close:hover::after {
    background: var(--bg-dark);
}

.mobile-nav-close::before {
    transform: rotate(45deg);
}

.mobile-nav-close::after {
    transform: rotate(-45deg);
}

.mobile-nav-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--primary-color);
}

.mobile-nav-link.active {
    color: var(--bg-dark);
    background: var(--primary-color);
    border-left-color: var(--bg-dark);
    font-weight: 600;
}

.mobile-nav-actions {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3em;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-intro {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    color: var(--secondary-color);
    font-weight: 600;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-color);
}

/* Content Cards */
.content-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05em;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: var(--bg-card);
    padding: 2px;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    min-width: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.info-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-dark);
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: var(--bg-card);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) td {
    background: rgba(255, 215, 0, 0.03);
}

.info-table tr:hover td {
    background: rgba(255, 215, 0, 0.08);
    transition: background 0.3s;
}

/* Lists */
.steps-list,
.bonus-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.steps-list li,
.bonus-list li {
    margin: 15px 0;
    color: var(--text-secondary);
    line-height: 1.9;
    padding-left: 35px;
    position: relative;
    font-size: 1.05em;
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    color: var(--bg-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9em;
}

.steps-list {
    counter-reset: step-counter;
}

.bonus-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5em;
    line-height: 1.5;
}

.bonus-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ */
.faq-item {
    margin: 25px 0;
    padding: 25px 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
}

.faq-question {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05em;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .section-title {
        font-size: 1.8em;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-card {
        padding: 20px;
    }

    .header-content {
        flex-wrap: nowrap;
        position: relative;
    }

    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .info-table {
        font-size: 0.9em;
    }

    .info-table th,
    .info-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.5em;
    }
    
    .mobile-nav {
        width: 100%;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

