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

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a2e;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Breadcrumb */
.breadcrumb {
    background: #16213e;
    padding: 10px 0;
    font-size: 14px;
    color: #8892b0;
}

.breadcrumb span {
    color: #64ffda;
}

/* Header */
.header {
    background: #1a1a2e;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    height: 40px;
}

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

.btn-login, .btn-signup {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 1px solid #64ffda;
    color: #64ffda;
}

.btn-login:hover {
    background: #64ffda;
    color: #1a1a2e;
}

.btn-signup {
    background: #4caf50;
    color: white;
    border: none;
}

.btn-signup:hover {
    background: #45a049;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://example.com/royal-reels-hero-background.jpg') no-repeat right center;
    background-size: cover;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    min-height: 300px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.bonus-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-hero {
    background: #1976d2;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: right;
}

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

/* Game Navigation */
.game-nav {
    background: #16213e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.game-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-items {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #8892b0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-item:hover, .nav-item.active {
    background: #ffc107;
    color: #1a1a2e;
}

.search-box {
    display: flex;
    align-items: center;
    background: #2a2d3a;
    border-radius: 6px;
    padding: 0 15px;
    min-width: 250px;
}

.search-box input {
    background: none;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    outline: none;
}

.search-box input::placeholder {
    color: #8892b0;
}

.search-box button {
    background: none;
    border: none;
    color: #8892b0;
    cursor: pointer;
    padding: 5px;
}

/* Games Grid */
.games-grid {
    padding: 40px 0;
}

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

.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.game-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    color: #ccc;
}

.more-games {
    text-align: center;
    margin-top: 40px;
}

.btn-more-games {
    background: #4caf50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-more-games:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Content Section */
.content-section {
    background: #16213e;
    padding: 60px 0;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    color: #e2e8f0;
    line-height: 1.8;
}

.seo-content h1 {
    color: #64ffda;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h2 {
    color: #ffc107;
    font-size: 24px;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.seo-content h3 {
    color: #64ffda;
    font-size: 20px;
    margin: 30px 0 15px 0;
}

.seo-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.seo-content ul, .seo-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.seo-content li {
    margin-bottom: 10px;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.seo-content th, .seo-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    word-wrap: break-word;
    max-width: 200px;
}

.seo-content th {
    background: #2a2d3a;
    color: #ffc107;
    font-weight: 600;
}

.seo-content tr:hover {
    background: rgba(100, 255, 218, 0.1);
}

/* Why Section */
.why-section {
    padding: 40px 0;
    border-top: 1px solid #333;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-header span {
    font-size: 18px;
    color: #ffc107;
}

.btn-read-more {
    background: #ffc107;
    color: #1a1a2e;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #ffb300;
}

/* Footer */
.footer {
    background: #0f1419;
    padding: 40px 0 20px 0;
    border-top: 1px solid #333;
}

.footer-content {
    margin-bottom: 40px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #64ffda;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column a {
    color: #8892b0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #64ffda;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-logo svg {
    height: 30px;
}

.age-restriction {
    display: flex;
    align-items: center;
}

.age-badge {
    background: #e91e63;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #8892b0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #64ffda;
}

.footer-copyright {
    text-align: center;
    margin-top: 20px;
    color: #8892b0;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .nav-items {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .search-box {
        min-width: 200px;
    }
    
    .games-row {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .game-card img {
        height: 200px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .seo-content h1 {
        font-size: 24px;
    }
    
    .seo-content h2 {
        font-size: 20px;
    }
    
    .seo-content table {
        font-size: 14px;
    }
    
    .seo-content th, .seo-content td {
        padding: 10px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .game-nav .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .games-row {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .seo-content {
        padding: 0 10px;
    }
    
    .seo-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .seo-content th, .seo-content td {
        min-width: 100px;
        max-width: none;
    }
}