/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.3;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Buttons - Mobile First */
.btn {
    display: inline-block;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff7b45, #fa9f2e);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #768efa, #865bb2);
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #ffffff;
}

.btn-large {
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 700;
}

/* Header - Mobile First */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: none;
}

.header-actions {
    display: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #ff6b35;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature span:last-child {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.hero-image {
    display: none;
}

/* Features Section - Mobile First */
.features {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Popular Games Section - Mobile First */
.popular-games {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-card h3,
.game-card p {
    padding: 0 1.5rem;
}

.game-card h3 {
    color: #ffffff;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.game-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.game-card .btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.games-cta {
    text-align: center;
    margin-top: 3rem;
}

.games-cta .btn {
    width: auto;
    margin: 0;
}

/* Promotions Section - Mobile First */
.promotions {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.promotions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.promo-card.featured {
    border: 2px solid #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.promo-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 1rem 0;
}

.promo-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.promo-card p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.promo-card .btn {
    width: 100%;
    margin: 0;
}

/* Testimonials Section - Mobile First */
.testimonials {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.testimonial-card p {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.author {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section - Mobile First */
.faq {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-item h3 {
    color: #ffffff;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item h3:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer - Mobile First */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-section p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #e0e0e0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    color: #cccccc;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-payments {
    text-align: center;
}

.footer-payments span {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 25px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .btn {
        width: auto;
        margin-bottom: 0;
        padding: 12px 24px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
        margin-right: 3rem;
        margin-bottom: 0;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
        max-width: none;
    }
    
    .hero-image {
        display: block;
        flex: 1;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .games-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: repeat(2, 1fr);
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-disclaimer {
        margin-bottom: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .main-nav {
        display: block;
    }
    
    .nav-list {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-list a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        color: #ff6b35;
    }
    
    .nav-list a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ff6b35;
        transition: width 0.3s ease;
    }
    
    .nav-list a:hover::after,
    .nav-list a.active::after {
        width: 100%;
    }
    
    .header-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .promotions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff6b35;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

/* Accessibility */
html {
    scroll-behavior: smooth;
}

.btn:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 110px 0 50px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }
    
    .feature {
        padding: 0.8rem;
    }
    
    .feature span:last-child {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .features,
    .popular-games,
    .promotions,
    .testimonials,
    .faq {
        padding: 50px 0;
    }
    
    .feature-card,
    .game-card,
    .promo-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .promo-amount {
        font-size: 1.8rem;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .feature-card:hover,
    .game-card:hover,
    .promo-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .nav-list a:hover::after {
        width: 0;
    }
    
    .social-links a:hover {
        color: #e0e0e0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero::before {
        background-size: 50px 50px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .feature {
        padding: 0.5rem;
    }
    
    .feature span:last-child {
        font-size: 0.7rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #000000 0%, #111111 100%);
    }
    
    .header {
        background: rgba(0, 0, 0, 0.98);
    }
    
    .mobile-menu {
        background: rgba(0, 0, 0, 0.99);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero::before {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .btn {
        border: 1px solid #000;
        background: transparent;
        color: #000;
    }
}

/* Sub-page Specific Styles */

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #888;
}

.breadcrumb-list a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #ffffff;
}

.breadcrumb-list .current,
.breadcrumb-list span {
    color: #ffffff;
}

/* Sub-page Hero Sections */
.page-hero,
.blog-hero,
.slots-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before,
.blog-hero::before,
.slots-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero-content,
.blog-hero-content,
.slots-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.blog-hero h1,
.slots-hero h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.page-hero .subtitle,
.blog-hero .blog-subtitle,
.slots-hero .slots-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Specific Styles */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.category-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-tag:hover,
.category-tag.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #ffffff;
}

.featured-article {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff6b35;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.article-meta .category {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.article-meta .date,
.article-meta .read-time {
    color: #888;
}

.article-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #888;
}

.latest-articles {
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.article-content h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #ff6b35;
}

.article-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Slots Page Specific */
.slots-categories,
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Games Grid */
.games-section {
    padding: 60px 0;
}

.games-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
}

/* Game Details */
.game-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-image {
    border-radius: 12px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: auto;
}

.game-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    text-align: center;
}

.cta-section h2,
.cta-section p {
    color: #ffffff;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

/* Responsive Design for Sub-pages */
@media (min-width: 768px) {
    .breadcrumb {
        margin-top: 70px;
    }
    
    .page-hero,
    .blog-hero,
    .slots-hero {
        padding: 100px 0 80px;
    }
    
    .page-hero h1,
    .blog-hero h1,
    .slots-hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slots-categories,
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .game-details {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .game-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .page-hero,
    .blog-hero,
    .slots-hero {
        padding: 120px 0 100px;
    }
    
    .page-hero h1,
    .blog-hero h1,
    .slots-hero h1 {
        font-size: 3rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .slots-categories,
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 2rem auto 0;
    }
}

/* Specific fixes for header overlap */
body.sub-page .hero {
    margin-top: 70px;
}

@media (min-width: 768px) {
    body.sub-page .hero {
        margin-top: 70px;
    }
}

@media (min-width: 1024px) {
    body.sub-page .hero {
        margin-top: 70px;
    }
} 