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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #1f2937;
    line-height: 1.6;
}

.top-bar {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
}

.brand-name {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu-links {
    display: flex;
    gap: 25px;
}

.menu-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.register-btn {
    background: #10b981;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.register-btn:hover {
    background: #059669;
    transform: scale(1.05);
}

.content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero-box {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

.hero-box h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-box p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-action {
    background: #10b981;
    color: #fff;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.hero-action:hover {
    background: #059669;
    transform: scale(1.08);
}

.section-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-box h2 {
    font-size: 32px;
    color: #10b981;
    margin-bottom: 20px;
    border-bottom: 3px solid #fbbf24;
    padding-bottom: 10px;
}

.section-box h3 {
    font-size: 24px;
    color: #059669;
    margin: 30px 0 15px;
}

.section-box p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
    text-align: justify;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.game-box {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #fbbf24;
    transition: all 0.3s;
}

.game-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.game-box h4 {
    font-size: 20px;
    color: #10b981;
    margin-bottom: 12px;
}

.game-box p {
    font-size: 15px;
    color: #6b7280;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.photo-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.photo-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.faq-box {
    background: #f9fafb;
    padding: 20px;
    border-left: 4px solid #10b981;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-box h4 {
    font-size: 18px;
    color: #10b981;
    margin-bottom: 10px;
}

.faq-box p {
    font-size: 15px;
    color: #6b7280;
}

.review-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #fbbf24;
}

.review-box p {
    font-size: 15px;
    color: #78350f;
}

.review-box strong {
    color: #10b981;
}

.bottom-bar {
    background: #1f2937;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
}

.bottom-bar p {
    font-size: 14px;
    color: #d1d5db;
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .menu-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .hero-box h2 {
        font-size: 28px;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

