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

:root {
    --primary-color: #FF6600;
    --secondary-color: #000000;
    --accent-color: #FFA500;
    --dark-bg: #0D0A1A;
    --light-bg: #1A1429;
    --text-primary: #FFFFFF;
    --text-secondary: #C5B8D8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    min-height: 100vh;
}

.main-header {
    background: rgba(13, 10, 26, 0.95);
    border-bottom: 3px solid var(--secondary-color);
    padding: 1.2rem 0;
}

.navigation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo-section img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #8B3CB8);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.5);
    display: inline-block;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
}

.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color), #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--dark-bg);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    display: inline-block;
}

.btn-hero:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Georgia', serif;
}

.intro-section {
    padding: 4rem 0;
    background: rgba(26, 20, 41, 0.7);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.intro-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.intro-content p {
    margin-bottom: 1.8rem;
}

.intro-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.game-card {
    background: rgba(26, 20, 41, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

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

.game-info {
    padding: 1.8rem;
}

.game-info h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.btn-game {
    background: linear-gradient(135deg, var(--primary-color), #8B3CB8);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.btn-game:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(107, 44, 145, 0.5);
}

.info-section {
    background: rgba(26, 20, 41, 0.7);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.info-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 800;
    font-family: 'Georgia', serif;
}

.info-section h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.info-section ul {
    list-style: none;
    padding-left: 0;
}

.info-section li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.info-section li::before {
    content: '♔';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.3rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-item {
    background: rgba(13, 10, 26, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.payment-item h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.faq-section {
    background: rgba(26, 20, 41, 0.7);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(13, 10, 26, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.reviews-section {
    background: rgba(26, 20, 41, 0.7);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.review-card {
    background: rgba(13, 10, 26, 0.6);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.reviewer-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.review-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.review-location {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.main-footer {
    background: rgba(13, 10, 26, 0.95);
    border-top: 3px solid var(--secondary-color);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}
