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

:root {
    --primary-color: #FF1493;
    --secondary-color: #00CED1;
    --accent-color: #FFD700;
    --dark-bg: #0A0E27;
    --light-bg: #1A1E3F;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-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(10, 14, 39, 0.95);
    border-bottom: 2px solid var(--primary-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: 65px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.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(--primary-color), var(--secondary-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), #FF69B4);
    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(255, 20, 147, 0.4);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

.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.4);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -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.3);
}

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

.btn-hero {
    background: linear-gradient(135deg, var(--accent-color), #FFA500);
    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(255, 215, 0, 0.5);
    display: inline-block;
}

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

.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(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section {
    padding: 4rem 0;
    background: rgba(26, 30, 63, 0.6);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.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(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

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

.game-card {
    background: rgba(26, 30, 63, 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(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.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;
}

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

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

.btn-game:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.info-section {
    background: rgba(26, 30, 63, 0.6);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.info-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 800;
}

.info-section h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.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(10, 14, 39, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

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

.faq-section {
    background: rgba(26, 30, 63, 0.6);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.4);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

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

.reviews-section {
    background: rgba(26, 30, 63, 0.6);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

.review-card {
    background: rgba(10, 14, 39, 0.6);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--secondary-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(10, 14, 39, 0.95);
    border-top: 2px solid var(--primary-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;
    }
}
