/* ========================================
   VN88 Theme Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-hover: #c73e54;
    --gold-color: #ffd700;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #2d2d44;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-cta {
    background: var(--gold-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 40px;
}

.btn-cta:hover {
    background: #ffed4a;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   Header
   ======================================== */

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-branding .logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

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

.header-actions .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

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

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

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

.btn-register:hover {
    background: var(--accent-hover);
}

/* ========================================
   Main Content
   ======================================== */

.site-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 300px);
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    text-align: center;
    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-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

/* ========================================
   Features Section
   ======================================== */

.features-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   Games Section
   ======================================== */

.games-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.game-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.game-image {
    height: 150px;
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-game {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--accent-color);
    color: var(--text-color);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
}

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

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(22, 33, 62, 0.5) 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

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

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-muted);
}

.faq-answer p {
    margin: 0;
}

/* ========================================
   Content Section
   ======================================== */

.content-section {
    padding: 60px 0;
    background: var(--primary-color);
}

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

.seo-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.seo-content p {
    color: var(--text-muted);
    text-align: justify;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
    padding: 80px 0 60px;
    background: var(--gradient-primary);
    text-align: center;
}

.page-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.page-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Steps Section
   ======================================== */

.steps-section,
.guide-steps-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.steps-list,
.guide-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step-item,
.guide-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.guide-step .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Tips Section
   ======================================== */

.tips-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tip-card {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

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

.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

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

.tip-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
}

.tip-item .tip-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tip-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Errors Section
   ======================================== */

.errors-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.errors-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.error-item {
    background: var(--primary-color);
    padding: 25px;
    border-radius: var(--border-radius-lg);
}

.error-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.error-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Promo Cards Section
   ======================================== */

.promo-cards-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.promo-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promo-card.featured {
    border: 2px solid var(--accent-color);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.promo-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.promo-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.promo-details {
    list-style: none;
    margin-bottom: 20px;
}

.promo-details li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.promo-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.btn-promo {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    color: var(--text-color);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
}

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

/* ========================================
   Timeline Section
   ======================================== */

.timeline-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-day {
    width: 120px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    padding-right: 30px;
}

.timeline-content {
    background: var(--primary-color);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   Terms Section
   ======================================== */

.terms-section {
    padding: 60px 0;
    background: var(--primary-color);
}

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

.terms-column h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

.terms-column li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

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

/* ========================================
   Deposit Guide Section
   ======================================== */

.deposit-guide-section,
.withdraw-guide-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.guide-feature {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: var(--border-radius-lg);
}

.guide-feature .feature-icon {
    margin-bottom: 15px;
}

.guide-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guide-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.guide-feature ul {
    list-style: none;
}

.guide-feature li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.guide-feature li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-size: 0.8rem;
}

/* ========================================
   Game Guides Section
   ======================================== */

.game-guides-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.game-guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.game-guide-card {
    background: var(--primary-color);
    padding: 25px;
    border-radius: var(--border-radius-lg);
}

.game-guide-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.game-guide-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.link-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.link-more:hover {
    color: var(--accent-hover);
}

/* ========================================
   Contact Cards Section
   ======================================== */

.contact-cards-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info span {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-color);
    font-weight: 600;
}

.contact-info .availability {
    color: var(--success-color);
    font-size: 0.85rem;
}

.btn-contact {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    color: var(--text-color);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
}

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

/* ========================================
   Support Types Section
   ======================================== */

.support-types-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.support-list {
    max-width: 900px;
    margin: 0 auto;
}

.support-item {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.support-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.support-content p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Response Time Section
   ======================================== */

.response-time-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.response-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.response-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.response-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.response-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.response-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
    background: var(--secondary-color);
    padding: 60px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-nav h4,
.footer-links h4,
.footer-support h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-menu,
.footer-links ul,
.footer-support ul {
    list-style: none;
}

.footer-menu li,
.footer-links li,
.footer-support li {
    margin-bottom: 10px;
}

.footer-menu a,
.footer-links a,
.footer-support a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

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

.copyright {
    margin-bottom: 15px;
}

.copyright p {
    color: var(--text-muted);
    margin: 0;
}

.footer-seo-text {
    max-width: 800px;
    margin: 0 auto;
}

.footer-seo-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .features-grid,
    .tips-grid,
    .guide-features,
    .game-guides-grid,
    .response-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid,
    .promo-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .games-grid,
    .tips-grid,
    .promo-grid,
    .errors-list,
    .guide-features,
    .game-guides-grid,
    .contact-grid,
    .response-grid,
    .terms-content {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-day {
        width: auto;
        text-align: left;
        padding-left: 40px;
    }
    
    .step-item,
    .guide-step,
    .support-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    section {
        padding: 50px 0 !important;
    }
    
    .promo-card,
    .contact-card,
    .game-card {
        padding: 20px;
    }
}

/* ========================================
   Image Styles
   ======================================== */

.hero-image,
.page-header-image,
.cta-image,
.tips-image,
.response-image,
.error-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.hero-image img,
.page-header-image img,
.cta-image img,
.tips-image img,
.response-image img,
.error-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.hero-image img {
    max-width: 600px;
}

.page-header-image img {
    max-width: 500px;
}

.tips-image img,
.response-image img {
    max-width: 700px;
}

.error-image img {
    max-width: 400px;
    margin-bottom: 15px;
}

/* ========================================
   Utility Classes
   ======================================== */

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

.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; }
