/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   CSS VARIABLES
   ======================================== */

:root {
    --purple-dark: #2d1b4e;
    --purple-deep: #1a0f2e;
    --purple-light: #4a2d7c;
    --yellow: #ffdd00;
    --yellow-bright: #ffd700;
    --cyan: #00d4aa;
    --cyan-bright: #00f5d4;
    --pink: #ff00ff;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.header {
    background: var(--purple-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--yellow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-login:hover {
    background: var(--yellow);
    color: var(--purple-dark);
}

.btn-join {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.6);
}

.btn-primary {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    color: var(--purple-dark);
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
    display: block;
    margin: 30px auto;
    max-width: 350px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.1;
    top: -100px;
    right: -100px;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--yellow);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-download {
    background: var(--purple-light);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 15px;
}

.btn-download:hover {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 28px;
}

.btn-icon img {
    width: 50px;
    height: 50px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 400;
    text-transform: none;
}

.btn-text strong {
    font-size: 16px;
}

.btn-ios {
    background: linear-gradient(135deg, #555, #333);
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.feature-icon {
    color: var(--cyan);
    font-size: 18px;
    font-weight: 700;
}

.hero-image {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
    border-radius: 20px;
    border: 3px solid var(--yellow);
    box-shadow: 0 10px 40px rgba(255, 221, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 17px;
}

/* ========================================
   SECTIONS
   ======================================== */

.app-info,
.download-section,
.login-section,
.games-section,
.payment-section,
.bonus-section,
.faq-section,
.requirements-section,
.why-choose-section,
.tips-section,
.security-section,
.support-section {
    padding: 80px 20px;
}

.app-info h2,
.download-section h2,
.login-section h2,
.games-section h2,
.payment-section h2,
.bonus-section h2,
.faq-section h2,
.requirements-section h2,
.why-choose-section h2,
.tips-section h2,
.security-section h2,
.support-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 221, 0, 0.3);
}

.feature-icon-box {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-icon-box img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--yellow);
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ========================================
   DOWNLOAD TABS
   ======================================== */

.download-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.tab-btn {
    padding: 12px 40px;
    background: var(--purple-light);
    border: 2px solid transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    color: var(--purple-dark);
    border-color: var(--yellow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.steps-container {
    max-width: 800px;
    margin: 40px auto;
}

.step-item {
    background: var(--purple-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    border-left: 4px solid var(--yellow);
}

.step-number {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    color: var(--purple-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--yellow);
}

.step-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ========================================
   LOGIN SECTION
   ======================================== */

.login-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
    align-items: center;
}

.login-visual {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
    border-radius: 20px;
    border: 3px solid var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.login-img {
    width: 100%;
    height: auto;
    border-radius: 17px;
}

.login-step {
    background: var(--purple-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cyan);
}

.step-badge {
    display: inline-block;
    background: var(--cyan);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--cyan);
}

.login-step p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

.login-tips {
    background: var(--purple-light);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid var(--yellow);
}

.login-tips h3 {
    color: var(--yellow);
    margin-bottom: 15px;
}

.login-tips ul {
    list-style: none;
}

.login-tips li {
    margin: 12px 0;
    color: var(--gray-light);
    line-height: 1.7;
    padding-left: 10px;
}

/* ========================================
   GAMES SECTION
   ======================================== */

.games-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.game-category {
    background: var(--purple-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.game-category:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.category-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.category-icon img {
    width: 112px;
    height: 112px;
    margin: 0 auto;
}

.game-category h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--yellow);
}

.game-category p {
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ========================================
   PAYMENT SECTION
   ======================================== */

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.payment-card {
    background: var(--purple-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.payment-card.featured {
    border-color: var(--yellow);
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2);
}

.payment-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.payment-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.payment-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--yellow);
}

.payment-card p {
    color: var(--gray-light);
    margin-bottom: 15px;
}

.payment-limits {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 15px;
    font-size: 13px;
    flex-wrap: wrap;
}

.payment-limits span {
    background: var(--purple-dark);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--cyan);
}

.payment-info {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid var(--cyan);
}

.payment-info h3 {
    color: var(--cyan);
    margin-bottom: 20px;
    font-size: 22px;
}

.payment-info ul {
    list-style: none;
}

.payment-info li {
    margin: 12px 0;
    color: var(--gray-light);
    line-height: 1.8;
    padding-left: 10px;
}

/* ========================================
   BONUS SECTION
   ======================================== */

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.bonus-card.highlight {
    border-color: var(--yellow);
    box-shadow: 0 10px 40px rgba(255, 221, 0, 0.3);
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    color: var(--purple-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--yellow);
}

.bonus-amount {
    font-size: 28px;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-features {
    list-style: none;
    margin: 20px 0;
}

.bonus-features li {
    margin: 10px 0;
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

.bonus-features strong {
    color: var(--yellow);
}

.btn-claim {
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    color: var(--white);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-grid {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background: var(--purple-light);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--yellow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    color: var(--white);
}

.faq-toggle {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::after {
    content: '▼';
    color: var(--purple-dark);
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* ========================================
   NEW SECTIONS - REQUIREMENTS
   ======================================== */

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.requirement-card {
    background: var(--purple-light);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--cyan);
    transition: all 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.req-icon {
    font-size: 60px;
    margin-bottom: 20px;
    text-align: center;
}

.requirement-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--yellow);
    text-align: center;
}

.req-list {
    list-style: none;
    margin: 20px 0;
}

.req-list li {
    margin: 12px 0;
    color: var(--gray-light);
    line-height: 1.7;
    padding-left: 10px;
}

.req-list strong {
    color: var(--cyan);
}

.req-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   WHY CHOOSE & COMPARISON SECTION
   ======================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.comparison-card {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.comparison-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.comparison-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.comparison-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--yellow);
}

.comparison-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ========================================
   TIPS SECTION
   ======================================== */

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.tip-card {
    background: var(--purple-light);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    border-left: 4px solid var(--cyan);
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.2);
}

.tip-number {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.tip-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--cyan);
}

.tip-content p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 14px;
}

/* ========================================
   SECURITY SECTION
   ======================================== */

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.security-feature {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.security-feature:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 221, 0, 0.3);
}

.security-icon {
    font-size: 60px;
    margin-bottom: 20px;
    text-align: center;
}

.security-feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--yellow);
    text-align: center;
}

.security-feature p {
    color: var(--gray-light);
    line-height: 1.7;
}

.security-tips {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid var(--yellow);
}

.security-tips h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 22px;
}

.security-tips ul {
    list-style: none;
}

.security-tips li {
    margin: 12px 0;
    color: var(--gray-light);
    line-height: 1.8;
    padding-left: 10px;
}

/* ========================================
   SUPPORT SECTION
   ======================================== */

.support-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.support-card {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--cyan);
    transition: all 0.3s;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.support-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.support-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--yellow);
}

.support-card p {
    color: var(--gray-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.support-card strong {
    color: var(--cyan);
}

.support-card .btn {
    margin-top: 20px;
}

.support-faq-quick {
    background: var(--purple-light);
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid var(--yellow);
}

.support-faq-quick h3 {
    color: var(--yellow);
    margin-bottom: 25px;
    font-size: 22px;
}

.quick-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-faq-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-faq-item strong {
    display: block;
    color: var(--cyan);
    margin-bottom: 10px;
    font-size: 16px;
}

.quick-faq-item p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--purple-dark);
    padding: 60px 20px 30px;
    border-top: 3px solid var(--yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 12px 0;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--yellow);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icons span {
    background: var(--purple-light);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
    color: var(--purple-dark);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.copyright {
    color: var(--gray-light);
    font-size: 14px;
    margin: 15px 0;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.6;
    max-width: 800px;
    margin: 15px auto;
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .features-grid,
    .games-categories,
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-cards,
    .footer-content,
    .payment-methods,
    .requirements-grid,
    .security-features,
    .support-channels,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--purple-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content,
    .login-guide {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        min-height: 300px;
    }

    .login-visual {
        min-height: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid,
    .games-categories,
    .payment-methods,
    .bonus-cards,
    .comparison-grid,
    .requirements-grid,
    .security-features,
    .support-channels,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .app-info h2,
    .download-section h2,
    .login-section h2,
    .games-section h2,
    .payment-section h2,
    .bonus-section h2,
    .faq-section h2,
    .requirements-section h2,
    .why-choose-section h2,
    .tips-section h2,
    .security-section h2,
    .support-section h2 {
        font-size: 32px;
    }

    .section-intro {
        font-size: 15px;
    }

    .step-item,
    .tip-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .logo-text {
        font-size: 22px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-large {
        padding: 15px 35px;
        font-size: 14px;
    }

    .hero-image,
    .login-visual {
        min-height: 250px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }

    .app-info h2,
    .download-section h2,
    .login-section h2,
    .games-section h2,
    .payment-section h2,
    .bonus-section h2,
    .faq-section h2,
    .requirements-section h2,
    .why-choose-section h2,
    .tips-section h2,
    .security-section h2,
    .support-section h2 {
        font-size: 26px;
    }

    .feature-card,
    .game-category,
    .payment-card,
    .bonus-card,
    .comparison-card,
    .requirement-card,
    .security-feature,
    .support-card {
        padding: 25px;
    }

    .payment-limits {
        flex-direction: column;
    }
}
