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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.breadcrumbs {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: #FFD700;
    text-decoration: none;
}

.breadcrumbs span {
    margin: 0 8px;
    color: #888;
}

.header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo-svg {
    height: 40px;
    width: auto;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #218838, #1aa179);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
}

.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://example.com/royal-reels-banner.jpg') center/cover;
    padding: 60px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bonus-text {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
}

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

.hero-svg {
    max-width: 400px;
    height: auto;
}

.game-categories {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.sticky-nav {
    position: sticky;
    top: 70px;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.categories-list {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.category:hover,
.category.active {
    background: #FFD700;
    color: #000;
}

.category-icon {
    width: 20px;
    height: 20px;
}

.providers-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    color: #ccc;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.providers-dropdown:hover {
    background: #333;
}

.dropdown-arrow {
    width: 12px;
    height: 8px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #333;
    border-radius: 6px;
    padding: 8px 12px;
    margin-left: auto;
}

.search-box input {
    background: none;
    border: none;
    color: white;
    outline: none;
    margin-right: 10px;
    width: 150px;
}

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

.search-icon {
    width: 16px;
    height: 16px;
    color: #888;
}

.main-content {
    padding: 40px 0;
}

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

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

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

.game-card img {
    width: 100%;
    height: 250px;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.btn-play {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
}

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

.btn-more {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
}

.why-play-section {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 20px;
    margin: 40px 0;
}

.why-play-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFD700;
    font-size: 18px;
    font-weight: 600;
}

.btn-read-more {
    background: #FFD700;
    color: #000;
    padding: 10px 20px;
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.seo-content {
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

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

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

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

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.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: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

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

.seo-content table th {
    background: #FFD700;
    color: #000;
    font-weight: 600;
}

.seo-content table tr:hover {
    background: rgba(255, 215, 0, 0.1);
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0 20px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    color: #FFD700;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.age-badge {
    background: #dc3545;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

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

.social-icons a {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .categories-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .why-play-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        margin-left: 0;
        order: -1;
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .seo-content h1 {
        font-size: 24px;
    }
    
    .seo-content h2 {
        font-size: 22px;
    }
    
    .seo-content table {
        font-size: 12px;
    }
    
    .seo-content table th,
    .seo-content table td {
        padding: 8px 10px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .seo-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}