* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

nav a:hover,
nav a.active {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 100px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ffd700;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 80px 20px;
    color: #fff;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
}

/* Features Section */
.features {
    background: #fff;
    padding: 60px 20px;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #667eea;
}

/* Games Section */
.games-preview {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    padding: 60px 20px;
    color: #fff;
}

.games-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.game-card-content {
    padding: 20px;
}

.game-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.play-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.play-btn:hover {
    background: #ffed4e;
}

/* Games Full Page */
.games-full {
    background: #fff;
    padding: 60px 20px;
}

.games-full h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Testimonials */
.testimonials {
    background: #fff;
    padding: 60px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #667eea;
}

/* About Page */
.about-content {
    background: #fff;
    padding: 60px 20px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #667eea;
}

.about-text ul {
    margin-left: 20px;
    margin-top: 15px;
}

.about-text li {
    margin-bottom: 10px;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.value-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #667eea;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 15px;
    color: #fff;
}

.stats-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffd700;
}

/* Promotions Page */
.promotions-section {
    background: #fff;
    padding: 60px 20px;
}

.promo-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.promo-card.featured {
    border: 3px solid #ffd700;
}

.promo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.promo-content {
    padding: 30px;
}

.promo-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #667eea;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.promo-content h2,
.promo-content h3 {
    color: #333;
    margin-bottom: 15px;
}

.promo-content ul {
    margin: 20px 0;
    list-style: none;
}

.promo-content li {
    margin-bottom: 10px;
    color: #555;
}

.claim-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

.claim-btn:hover {
    background: #ffed4e;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.terms-section {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.terms-section h3 {
    margin-bottom: 15px;
    color: #667eea;
}

/* Contact Page */
.contact-section {
    background: #fff;
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #667eea;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-method img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #667eea;
}

.contact-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #5568d3;
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #667eea;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #5568d3;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #667eea;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section li {
    color: #ccc;
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
    
    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    nav a {
        font-size: 13px;
        padding: 6px 10px;
        white-space: nowrap;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    header {
        padding: 15px 0;
    }
    
    .hero h1 {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .features h2,
    .games-preview h2,
    .testimonials h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-section.reverse {
        direction: ltr;
    }
    
    .page-header h1 {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .page-header p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .page-header {
        padding: 60px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card h3 {
        font-size: 32px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .feature-card,
    .game-card,
    .testimonial-card,
    .promo-card,
    .value-card,
    .contact-method,
    .faq-item {
        padding: 20px;
    }
    
    .about-text h2,
    .contact-info h2,
    .contact-form-container h2,
    .games-full h2 {
        font-size: 24px;
    }
    
    .stats-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    nav ul {
        gap: 5px;
    }
    
    nav a {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    header {
        padding: 12px 0;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .features h2,
    .games-preview h2,
    .testimonials h2 {
        font-size: 24px;
    }
    
    .feature-card h3,
    .game-card h3 {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .play-btn,
    .claim-btn,
    .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}
