/* ==========================================
   66D.com - CSS Styles
   ========================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b00;
    --primary-dark: #e05500;
    --secondary: #1a1a2e;
    --accent: #ffd700;
    --bg-dark: #0f0f23;
    --bg-darker: #0a0a1a;
    --bg-card: #16213e;
    --bg-card-hover: #1a2744;
    --text-white: #ffffff;
    --text-light: #b8c4d4;
    --text-muted: #8892a4;
    --gradient-primary: linear-gradient(135deg, #ff6b00, #ff9500);
    --gradient-hero: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-card: linear-gradient(180deg, #16213e, #0f0f23);
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Header
   ========================================== */
.header {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

.logo a:hover {
    color: var(--primary);
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.main-nav .nav-list a {
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
    color: var(--text-white);
    background: rgba(255, 107, 0, 0.15);
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-darker);
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 16px;
    color: var(--text-light);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul li a:hover {
    color: var(--primary);
}

.mobile-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mobile-actions .btn {
    flex: 1;
    text-align: center;
}

/* ==========================================
   Breadcrumb
   ========================================== */
.breadcrumb {
    background: var(--bg-darker);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--text-muted);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list .current {
    color: var(--text-light);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.hero-features .feature .icon {
    font-size: 1.3rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 480px;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Page Hero (sub pages) */
.page-hero {
    background: var(--gradient-hero);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.page-hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    padding: 80px 0;
    background: var(--bg-darker);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   Games Grid
   ========================================== */
.popular-games {
    padding: 80px 0;
}

.popular-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.3);
}

.game-card .game-image {
    position: relative;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.game-overlay .popularity {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.game-overlay .live-indicator {
    background: rgba(255, 0, 0, 0.8);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.game-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.game-stats span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.game-info .btn {
    width: 100%;
}

.games-cta {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   Categories
   ========================================== */
.slots-categories {
    padding: 80px 0;
    background: var(--bg-darker);
}

.slots-categories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.category-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.game-count {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================
   Promotions
   ========================================== */
.promotions {
    padding: 80px 0;
}

.promotions h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.promo-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.08), var(--bg-card));
}

.promo-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.promo-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.promo-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.testimonial-card .stars {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card .tip-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.testimonial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-card .author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-darker);
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-white);
    cursor: pointer;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   Blog / Articles
   ========================================== */
.blog-section {
    padding: 80px 0;
}

.blog-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card .blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: var(--text-white);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Article page */
.article-content {
    padding: 60px 0;
}

.article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.article-main {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
}

.article-main .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-main h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-main h2 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--text-white);
}

.article-main h3 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.article-main p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.article-main ul, .article-main ol {
    margin: 15px 0 20px 25px;
    color: var(--text-light);
}

.article-main li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-main img {
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.article-main blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

.article-main .cta-box {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.article-main .cta-box h3 {
    margin-bottom: 10px;
}

.article-main .cta-box p {
    margin-bottom: 20px;
}

.article-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-main table th,
.article-main table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.article-main table th {
    background: rgba(255, 107, 0, 0.1);
    color: var(--text-white);
    font-weight: 600;
}

.article-main table td {
    color: var(--text-light);
}

/* Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 25px;
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: 8px;
}

.sidebar-widget ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    padding: 6px 0;
    transition: var(--transition);
}

.sidebar-widget ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.sidebar-cta {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
    border-color: rgba(255, 107, 0, 0.3) !important;
    text-align: center;
}

.sidebar-cta p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-payments span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-icons img {
    height: 25px;
    width: auto;
    opacity: 0.7;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: none;
        max-width: 400px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-main {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
