/* Dragonia Casino - Premium Styles */

:root {
    --primary-purple: #2a1a3d;
    --secondary-purple: #3d2657;
    --accent-pink: #ff4d8c;
    --accent-gold: #ffd700;
    --dark-bg: #1a0f2e;
    --card-bg: #271841;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --border-color: #4a3566;
    --success-green: #00ff88;
    --gradient-primary: linear-gradient(135deg, #2a1a3d 0%, #3d2657 100%);
    --gradient-accent: linear-gradient(135deg, #ff4d8c 0%, #ff6b9d 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

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

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

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

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    background: var(--gradient-primary);
    border-right: 2px solid var(--border-color);
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--primary-purple);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-pink);
    border-radius: 3px;
}

.sidebar-header {
    padding: 25px 15px;
    border-bottom: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
}

.sidebar-logo {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-nav {
    padding: 15px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.nav-item:hover {
    background: rgba(255, 77, 140, 0.1);
    border-left-color: var(--accent-pink);
    padding-left: 25px;
}

.nav-item.active {
    background: rgba(255, 77, 140, 0.2);
    border-left-color: var(--accent-gold);
}

.nav-icon {
    font-size: 20px;
    margin-right: 12px;
    min-width: 24px;
    text-align: center;
}

.nav-text {
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: var(--gradient-accent);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 77, 140, 0.5);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-left: 220px;
    min-height: 100vh;
}

/* Header */
.header {
    background: var(--gradient-primary);
    border-bottom: 2px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 77, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 77, 140, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-purple);
}

.btn-cta {
    background: var(--gradient-gold);
    color: var(--primary-purple);
    font-size: 16px;
    padding: 15px 40px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 15, 46, 0.5), rgba(42, 26, 61, 0.6)), url('../images/banner-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a0f2e;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 140, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-bonus {
    margin-top: 50px;
}

.bonus-card {
    background: var(--gradient-primary);
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '🎁';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.1;
}

.bonus-card h2 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 30px rgba(255, 77, 140, 0.3);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.advantage-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Info Tables */
.info-table-wrapper {
    margin-top: 50px;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}

.info-table thead {
    background: var(--gradient-accent);
}

.info-table th {
    padding: 18px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.info-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.info-table tbody tr:hover {
    background: rgba(255, 77, 140, 0.1);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

/* Games Section */
.games-section {
    background: linear-gradient(rgba(26, 15, 46, 0.75), rgba(42, 26, 61, 0.8)), url('../images/banner-slots.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.games-section {
    background: linear-gradient(rgba(26, 15, 46, 0.85), rgba(42, 26, 61, 0.85)), url('../images/banner-games.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 22px;
    color: var(--text-light);
}

.category-count {
    background: var(--gradient-accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.category-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(rgba(26, 15, 46, 0.85), rgba(42, 26, 61, 0.9)), url('../images/banner-treasure.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.vip-tier {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-tier.featured {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.vip-tier:hover {
    transform: translateY(-5px);
}

.tier-badge {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.tier-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
}

.tier-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.tier-badge.gold {
    background: var(--gradient-gold);
    color: var(--primary-purple);
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #d4d4d4 100%);
    color: var(--primary-purple);
}

.tier-badge.diamond {
    background: linear-gradient(135deg, #b9f2ff 0%, #00d4ff 100%);
    color: var(--primary-purple);
}

.vip-tier h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.tier-benefits {
    list-style: none;
    text-align: left;
}

.tier-benefits li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
}

.tier-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.vip-info {
    background: var(--card-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Payment Section */
.payment-methods {
    margin-bottom: 50px;
}

.payment-category {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.payment-category h3 {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: var(--accent-pink);
    transform: translateY(-3px);
}

.payment-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.payment-item span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.payment-details {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.payment-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-pink);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.info-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Tournaments Section */
.tournaments-section {
    background: linear-gradient(rgba(26, 15, 46, 0.8), rgba(42, 26, 61, 0.85)), url('../images/banner-slots.jpg');
    background-size: cover;
    background-position: center top;
}
.tournaments-section {
    background: linear-gradient(rgba(26, 15, 46, 0.9), rgba(42, 26, 61, 0.9)), url('../images/banner-slots.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.tournaments-list {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.tournament-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tournament-card.featured-tournament {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 77, 140, 0.3);
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.tournament-header h3 {
    font-size: 24px;
    color: var(--text-light);
}

.prize-pool {
    background: var(--gradient-gold);
    color: var(--primary-purple);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
}

.tournament-details p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tournament-info {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.tournament-info li {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.tournament-info strong {
    color: var(--accent-pink);
}

/* Mobile Section */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-feature {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.mobile-feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.mobile-feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

.mobile-instructions {
    background: var(--card-bg);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
}

.mobile-instructions h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    padding: 15px 0;
    padding-left: 50px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
    counter-increment: step-counter;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 35px;
    height: 35px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: 5px;
    color: var(--text-gray);
    font-size: 14px;
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.security-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: var(--success-green);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.security-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.security-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.responsible-gaming {
    background: var(--card-bg);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
}

.responsible-gaming h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.tools-list {
    list-style: none;
}

.tools-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.tools-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-size: 20px;
}

.tools-list strong {
    color: var(--text-light);
}

.help-text {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 77, 140, 0.1);
    border-left: 4px solid var(--accent-pink);
    border-radius: 5px;
    color: var(--text-gray);
    line-height: 1.8;
}

.help-text strong {
    color: var(--text-light);
}

/* Support Section */
.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.support-channel {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-channel:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}

.channel-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.support-channel h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.channel-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.channel-details {
    list-style: none;
    margin-bottom: 25px;
}

.channel-details li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 14px;
}

.btn-support {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 77, 140, 0.5);
}

.support-topics {
    margin-bottom: 50px;
}

.support-topics h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--accent-pink);
    text-align: center;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.topic-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.topic-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.topic-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.topic-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-pink);
}

.faq-question {
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    cursor: pointer;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Promotions Section */
.promotions-section {
    background: linear-gradient(rgba(26, 15, 46, 0.85), rgba(42, 26, 61, 0.85)), url('../images/banner-games.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promo-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.promo-card.featured-promo {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.03);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 77, 140, 0.3);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.promo-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
    margin-top: 10px;
}

.promo-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.promo-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.promo-terms {
    list-style: none;
    margin-bottom: 25px;
}

.promo-terms li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
}

.promo-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.btn-promo {
    width: 100%;
    text-align: center;
}

.promo-note {
    background: var(--card-bg);
    border: 2px solid var(--accent-pink);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

.promo-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.promo-note p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    border-top: 3px solid var(--accent-gold);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-license {
    margin-top: 15px;
}

.footer-license p {
    font-size: 14px;
    color: var(--text-light);
}

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

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    padding: 10px 0;
    color: var(--text-gray);
}

.footer-social {
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.footer-payment-methods {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.footer-payment-methods p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-icons span {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-responsible-gaming {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.footer-responsible-gaming p {
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.responsible-gaming-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.responsible-gaming-logos span {
    font-size: 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .header-logo {
        height: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .bonus-amount {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .advantages-grid,
    .games-categories,
    .vip-tiers,
    .support-channels,
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .tournament-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .payment-icons,
    .social-icons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .section {
        padding: 50px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .advantage-card,
    .category-card,
    .vip-tier,
    .payment-category,
    .tournament-card,
    .mobile-feature,
    .security-card,
    .support-channel,
    .faq-item,
    .promo-card {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--accent-pink);
    color: var(--text-light);
}