/**
 * Rikvip Theme Main Stylesheet
 *
 * @package Rikvip_Theme
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #ffd700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #888888;
    --bg-dark: #0f0f1a;
    --bg-card: #1e1e3f;
    --border-color: #2d2d5a;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   Header Styles
   ============================================ */
.site-header {
    background: var(--gradient-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu .nav-item {
    position: relative;
}

.main-menu .nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.main-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
}

.main-menu .nav-link:hover::after,
.main-menu .current-menu-item .nav-link::after {
    width: 100%;
}

.main-menu .nav-link:hover {
    color: var(--accent-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

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

.btn-login:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-register {
    background: var(--gradient-accent);
    color: var(--text-light);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.nav-mobile.active {
    display: block;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu .nav-link {
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.mobile-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-actions .btn {
    width: 100%;
}

/* ============================================
   Main Content
   ============================================ */
.site-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Hero Links */
.hero-links {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.hero-links-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--gold-color);
}

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

.hero-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.hero-link-item:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.link-icon {
    font-size: 32px;
    color: var(--accent-color);
}

.link-text {
    font-weight: 600;
    color: var(--text-light);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-top: -30px;
    margin-bottom: 50px;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--text-light);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Games Section
   ============================================ */
.games-section {
    background: var(--gradient-primary);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.game-image {
    height: 200px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--accent-color);
}

.game-cards {
    background: linear-gradient(135deg, #2d1b4e 0%, #1e1e3f 100%);
}

.game-slots {
    background: linear-gradient(135deg, #4a1e4e 0%, #1e1e3f 100%);
}

.game-fishing {
    background: linear-gradient(135deg, #1e3a4e 0%, #1e1e3f 100%);
}

.game-content {
    padding: 30px;
}

.game-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.game-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-game {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 12px 30px;
}

.btn-game:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Promotions Section
   ============================================ */
.promotions-section {
    background: var(--bg-dark);
}

.promotions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-normal);
}

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

.promo-highlight {
    border: 2px solid var(--gold-color);
}

.promo-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.promo-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.promo-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.promo-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-promo {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
}

.btn-promo:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--gradient-accent);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--text-light);
    color: var(--accent-color);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-cta-secondary:hover {
    background: var(--text-light);
    color: var(--accent-color);
}

/* ============================================
   Guide Section
   ============================================ */
.guide-section {
    background: var(--bg-dark);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guide-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Page Hero
   ============================================ */
.page-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Download Page Styles
   ============================================ */
.download-section {
    background: var(--bg-dark);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.download-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.download-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 48px;
    color: var(--text-light);
}

.download-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.download-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-features {
    text-align: left;
    margin-bottom: 25px;
}

.download-features li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-features i {
    color: var(--accent-color);
}

.btn-download {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Install Guide */
.install-guide-section {
    background: var(--gradient-primary);
}

.install-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.install-tab {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-tab.active,
.install-tab:hover {
    background: var(--accent-color);
}

.install-content {
    display: none;
}

.install-content.active {
    display: block;
}

.install-steps {
    max-width: 800px;
    margin: 0 auto;
}

.install-step {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.install-step .step-number {
    flex-shrink: 0;
    margin: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Requirements */
.requirements-section {
    background: var(--bg-dark);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirement-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.requirement-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.requirement-card li:last-child {
    border-bottom: none;
}

/* ============================================
   Games Page Styles
   ============================================ */
.games-categories-section {
    background: var(--bg-dark);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.category-tab.active,
.category-tab:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-light);
}

.game-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.game-item {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.game-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.game-thumb {
    height: 150px;
}

.game-thumb-placeholder {
    width: 100%;
    height: 100%;
}

.cards-phom { background: linear-gradient(135deg, #4a1e4e 0%, #2d1b4e 100%); }
.cards-tienlen { background: linear-gradient(135deg, #1e4e3a 0%, #1e3a4e 100%); }
.cards-poker { background: linear-gradient(135deg, #4e3a1e 0%, #4e1e1e 100%); }
.cards-lieng { background: linear-gradient(135deg, #1e3a4e 0%, #3a1e4e 100%); }
.cards-baccarat { background: linear-gradient(135deg, #3a4e1e 0%, #1e4e3a 100%); }
.cards-xito { background: linear-gradient(135deg, #4e1e3a 0%, #3a1e4e 100%); }

.slot-vegas { background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%); }
.slot-luxury { background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%); }
.slot-ocean { background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%); }
.slot-fruit { background: linear-gradient(135deg, #ff6347 0%, #ff8c00 100%); }

.fish-ocean { background: linear-gradient(135deg, #006994 0%, #003366 100%); }
.fish-dragon { background: linear-gradient(135deg, #8b0000 0%, #4a0000 100%); }
.fish-king { background: linear-gradient(135deg, #ffd700 0%, #daa520 100%); }

.casino-roulette { background: linear-gradient(135deg, #8b0000 0%, #006400 100%); }
.casino-blackjack { background: linear-gradient(135deg, #1e1e1e 0%, #4a4a4a 100%); }
.casino-dragon { background: linear-gradient(135deg, #ff0000 0%, #0000ff 100%); }

.game-info {
    padding: 20px;
}

.game-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.game-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-play {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 10px 25px;
    font-size: 14px;
}

/* Game Features */
.game-features-section {
    background: var(--gradient-primary);
}

.game-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-feature-item {
    text-align: center;
    padding: 30px;
}

.game-feature-item .feature-icon {
    background: rgba(233, 69, 96, 0.2);
    border: 2px solid var(--accent-color);
}

.game-feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.game-feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================
   Promotions Page Styles
   ============================================ */
.main-promotions-section {
    background: var(--bg-dark);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.promo-large {
    padding: 50px 40px;
}

.promo-large .promo-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    color: var(--text-light);
}

.promo-large .promo-title {
    font-size: 28px;
}

.promo-large .promo-value {
    font-size: 72px;
}

.promo-details {
    text-align: left;
    margin: 30px 0;
}

.promo-details li {
    padding: 10px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-details i {
    color: var(--accent-color);
}

.btn-promo-large {
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 18px 50px;
    font-size: 18px;
}

/* VIP Section */
.vip-section {
    background: var(--gradient-primary);
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.vip-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.vip-card:hover {
    transform: translateY(-10px);
}

.vip-silver {
    border-color: #c0c0c0;
}

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

.vip-gold {
    border-color: #ffd700;
}

.vip-gold .vip-badge {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.vip-platinum {
    border-color: #e5e4e2;
}

.vip-platinum .vip-badge {
    background: linear-gradient(135deg, #e5e4e2 0%, #a0a0a0 100%);
    color: var(--text-dark);
}

.vip-diamond {
    border-color: #b9f2ff;
}

.vip-diamond .vip-badge {
    background: linear-gradient(135deg, #b9f2ff 0%, #00bfff 100%);
    color: var(--text-dark);
}

.vip-badge {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.vip-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.vip-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.vip-requirement {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.vip-benefits {
    text-align: left;
}

.vip-benefits li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-benefits i {
    color: var(--gold-color);
}

/* Other Promotions */
.other-promotions-section {
    background: var(--bg-dark);
}

.other-promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.other-promo-card {
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

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

.other-promo-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--text-light);
}

.other-promo-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.other-promo-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-other-promo {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 25px;
}

.btn-other-promo:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

/* Terms Section */
.terms-section {
    background: var(--gradient-primary);
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.terms-column h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.terms-column ul {
    list-style: none;
}

.terms-column li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.terms-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

/* ============================================
   Guide Page Styles
   ============================================ */
.guide-nav-section {
    background: var(--bg-card);
    padding: 30px 0;
}

.guide-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.guide-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: var(--bg-dark);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    min-width: 120px;
}

.guide-nav-item:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.guide-nav-item i {
    font-size: 28px;
    color: var(--accent-color);
}

.guide-nav-item:hover i {
    color: var(--text-light);
}

.guide-nav-item span {
    font-weight: 600;
    color: var(--text-light);
}

/* Guide Content */
.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-intro {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
}

.guide-intro p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* Guide Steps Detailed */
.guide-steps-detailed {
    margin-bottom: 40px;
}

.guide-step-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.guide-step-item:hover {
    border-color: var(--accent-color);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-number-large {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    flex-shrink: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
}

.step-body {
    padding-left: 80px;
}

.step-body p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.step-list li {
    padding: 10px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.step-list li:last-child {
    border-bottom: none;
}

.step-list strong {
    color: var(--accent-color);
}

/* Guide Tips */
.guide-tips {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-color);
    border-radius: 15px;
    padding: 30px;
}

.guide-tips h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-tips li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
}

.guide-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 40px;
}

.payment-methods h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
    text-align: center;
}

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

.method-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

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

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--text-light);
}

.method-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.method-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Simple Steps */
.guide-steps-simple {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
}

.guide-steps-simple h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.guide-steps-simple li {
    padding: 15px 0 15px 60px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    line-height: 1.6;
}

.guide-steps-simple li:last-child {
    border-bottom: none;
}

.guide-steps-simple li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
}

.guide-steps-simple strong {
    color: var(--text-light);
}

/* Withdraw Info */
.withdraw-info {
    margin-bottom: 40px;
}

.info-box {
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    padding: 30px;
}

.info-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
}

.info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Withdraw Limits Table */
.withdraw-limits {
    margin-top: 40px;
}

.withdraw-limits h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: center;
}

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

.limits-table th,
.limits-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.limits-table th {
    background: var(--gradient-accent);
    color: var(--text-light);
    font-weight: 600;
}

.limits-table td {
    color: var(--text-muted);
}

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

/* Games Guide Grid */
.games-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-guide-card {
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

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

.game-guide-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-guide-card h3 i {
    color: var(--accent-color);
}

.game-guide-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.game-guide-card ul {
    list-style: none;
}

.game-guide-card li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.game-guide-card li:last-child {
    border-bottom: none;
}

.game-guide-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
    background: var(--gradient-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(233, 69, 96, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

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

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-methods-section {
    background: var(--bg-dark);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-method-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--text-light);
}

.contact-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-contact {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
}

.btn-contact:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

/* Quick Help Section */
.quick-help-section {
    background: var(--gradient-primary);
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.quick-help-item {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    display: block;
}

.quick-help-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.quick-help-icon {
    width: 70px;
    height: 70px;
    background: rgba(233, 69, 96, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent-color);
}

.quick-help-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.quick-help-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Support Hours Section */
.support-hours-section {
    background: var(--bg-dark);
}

.hours-content {
    max-width: 900px;
    margin: 0 auto;
}

.hours-info {
    margin-bottom: 40px;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.hours-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-light);
    flex-shrink: 0;
}

.hours-detail h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.hours-detail p {
    color: var(--text-muted);
}

.hours-note {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-color);
    border-radius: 15px;
    padding: 30px;
}

.hours-note h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-note li {
    padding: 8px 0;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
}

.hours-note li::before {
    content: '!';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: bold;
}

/* ============================================
   Footer Styles
   ============================================ */
.site-footer {
    background: var(--secondary-color);
    padding: 60px 0 30px;
}

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

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

.footer-widget-area {
    padding: 20px 0;
}

.footer-widget-area .widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-widget-area ul {
    list-style: none;
}

.footer-widget-area li {
    padding: 8px 0;
}

.footer-widget-area a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-widget-area a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--text-muted);
    font-size: 14px;
}

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

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

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

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .games-row {
        grid-template-columns: 1fr;
    }
    
    .guide-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .guide-nav-item {
        width: 100%;
        max-width: 300px;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step-body {
        padding-left: 0;
        text-align: center;
    }
    
    .install-step {
        flex-direction: column;
        text-align: center;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-links {
        padding: 25px;
    }
    
    .hero-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card,
    .game-card,
    .download-card {
        padding: 25px 20px;
    }
    
    .promo-large .promo-value {
        font-size: 48px;
    }
    
    .promo-large .promo-title {
        font-size: 22px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

/* ============================================
   Animation Styles
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.feature-card,
.game-card,
.promo-card,
.download-card,
.vip-card,
.contact-method-card {
    animation: fadeInUp 0.6s ease forwards;
}

.btn-primary,
.btn-register,
.btn-download,
.btn-promo-large {
    animation: pulse 2s infinite;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Background Image Styles
   ============================================ */
.hero-bg-image,
.promo-bg-image,
.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image img,
.promo-bg-image img,
.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-bg-image::after,
.promo-bg-image::after,
.cta-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%);
    z-index: 1;
}

.hero-section,
.page-hero,
.promotions-section,
.cta-section {
    position: relative;
}

.hero-section .container,
.page-hero .container,
.promotions-section .container,
.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Game Card Image Styles */
.game-image img,
.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.game-image,
.game-thumb {
    position: relative;
    overflow: hidden;
}

.game-image::after,
.game-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 26, 0.8) 100%);
    pointer-events: none;
}
