:root {
    --primary-color: #1e88e5;
    --secondary-color: #0d47a1;
    --accent-color: #ff4444;
    --background-dark: #1a1a2e;
    --background-blue: #16213e;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --gradient-blue: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    --gradient-hero: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--background-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Breadcrumb */
.breadcrumb {
    background: rgba(30, 136, 229, 0.1);
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    margin-right: 10px;
}

.breadcrumb li:not(:last-child):after {
    content: '>';
    margin-left: 10px;
    color: var(--text-gray);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Header */
.header {
    background: var(--background-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
}

.logo svg {
    filter: drop-shadow(0 0 5px rgba(30, 136, 229, 0.5));
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

/* Hero Section */
.hero {
    background: var(--gradient-blue);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://via.placeholder.com/1200x400/ff6b35/ffffff?text=Captain+Hero') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.crypto-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.crypto-icons {
    display: flex;
    gap: 10px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffd700;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffd700;
    font-weight: 600;
}

.btn-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.hero-image {
    flex: 1;
    min-height: 300px;
    background: url('https://via.placeholder.com/400x300/transparent') center/contain no-repeat;
}

/* Game Navigation */
.game-nav {
    background: var(--background-blue);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.game-nav.sticky {
    background: var(--background-blue);
}

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

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: var(--text-gray);
    font-weight: 600;
}

.nav-item.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.nav-item:hover:not(.active) {
    background: rgba(30, 136, 229, 0.2);
    color: white;
    transform: translateY(-2px);
}

.nav-item svg {
    width: 24px;
    height: 24px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.games-section {
    margin-bottom: 50px;
}

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

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-white);
}

.see-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.see-all:hover {
    color: #64b5f6;
}

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

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

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

.game-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.game-badge.new {
    background: var(--success-color);
    color: white;
}

.game-badge.top {
    background: var(--warning-color);
    color: white;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-weight: bold;
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 5px;
}

.game-provider {
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
}

/* SEO Content */
.seo-content {
    background: var(--background-blue);
    padding: 60px 0;
    margin-top: 50px;
}

.seo-content h1 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.seo-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.seo-content h3 {
    font-size: 24px;
    color: var(--text-white);
    margin: 30px 0 15px 0;
}

.seo-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--background-dark);
    border-radius: 8px;
    overflow: hidden;
}

.seo-content table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.seo-content table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-gray);
}

.seo-content table tr:last-child td {
    border-bottom: none;
}

.seo-content table tr:hover {
    background: rgba(30, 136, 229, 0.1);
}

.seo-content ol {
    color: var(--text-gray);
    margin: 20px 0;
    padding-left: 20px;
}

.seo-content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.seo-content ul {
    color: var(--text-gray);
    margin: 20px 0;
    padding-left: 20px;
}

.seo-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 50px 0 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
}

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

.footer-section {
    color: var(--text-white);
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    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-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.facebook {
    background: #4267b2;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-blue);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 100;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    color: var(--text-gray);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.bottom-nav .nav-item svg {
    width: 20px;
    height: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: var(--background-blue);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    z-index: 1000;
    max-width: 400px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 14px;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .nav-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .seo-content h1 {
        font-size: 28px;
    }
    
    .seo-content h2 {
        font-size: 22px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .btn-secondary, .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .crypto-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-items {
        justify-content: space-around;
    }
    
    .nav-item {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .nav-item svg {
        width: 20px;
        height: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        margin-top: 20px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 70px;
    }
}