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

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

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

.breadcrumb {
    background: #2c2c2c;
    padding: 8px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb span {
    color: #fff;
}

.header {
    background: #2c2c2c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo svg {
    width: 50px;
    height: 50px;
}

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

.btn-outline {
    padding: 10px 25px;
    border: 2px solid #666;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #e91e63;
    background: #e91e63;
}

.btn-primary {
    padding: 10px 25px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #e91e63;
}

.btn-primary:hover {
    background: #c2185b;
    border-color: #c2185b;
}

.sticky-nav {
    background: #333;
    padding: 10px 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-items {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-item:hover,
.nav-item.active {
    color: #e91e63;
}

.hero {
    padding: 80px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.welcome-package {
    padding: 40px 0;
    background: #2c2c2c;
}

.package-card {
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #444;
}

.package-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.offer-item {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.offer-item:before {
    content: '•';
    color: #e91e63;
    position: absolute;
    left: 0;
}

.package-terms {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

.games-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
}

.see-all {
    color: #e91e63;
    text-decoration: none;
    font-size: 16px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.play-btn {
    background: #e91e63;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.content-section {
    padding: 60px 0;
    background: #f8f8f8;
    color: #333;
}

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

.seo-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.seo-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c2c2c;
}

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

.seo-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

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

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

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.seo-content th,
.seo-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.seo-content th {
    background: #e91e63;
    color: white;
    font-weight: bold;
}

.seo-content tr:hover {
    background: #f5f5f5;
}

.payment-methods {
    padding: 40px 0;
    background: #2c2c2c;
}

.payment-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
}

.payment-logo:hover {
    opacity: 1;
}

.age-restriction svg {
    opacity: 0.7;
}

.footer {
    background: #1a1a1a;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.footer p {
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    display: flex;
    border-top: 1px solid #444;
    z-index: 1000;
}

.nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    transition: color 0.3s;
}

.nav-btn:hover,
.nav-btn.active {
    color: #e91e63;
}

.nav-btn span {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .package-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .nav-items {
        gap: 20px;
    }
    
    .nav-item span {
        font-size: 12px;
    }
    
    .sticky-nav {
        top: 70px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .payment-grid {
        gap: 15px;
    }
    
    .payment-logo {
        height: 30px;
    }
    
    .seo-content {
        padding: 0 15px;
    }
    
    .seo-content h1 {
        font-size: 28px;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .seo-content table {
        font-size: 14px;
    }
    
    .seo-content th,
    .seo-content td {
        padding: 10px 8px;
    }
}