:root {
    --primary-color: 220 100% 50%;
    --secondary-color: 340 82% 52%;
    --accent-color: 45 100% 51%;
    --text-color: 220 20% 20%;
    --text-light: 220 15% 40%;
    --background: 220 25% 8%;
    --surface: 220 20% 12%;
    --surface-light: 220 15% 18%;
    --success: 140 65% 45%;
    --border: 220 15% 25%;
    --gradient-primary: linear-gradient(135deg, hsl(220 100% 50%), hsl(340 82% 52%));
    --gradient-secondary: linear-gradient(135deg, hsl(220 20% 12%), hsl(220 25% 8%));
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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


a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: hsl(var(--text-color));
    background: var(--gradient-secondary);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: hsl(var(--surface));
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(var(--primary-color));
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: hsl(var(--primary-color));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/egypt.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Casino Section */
.casinos {
    padding: 80px 0;
    background: hsl(var(--background));
}

.casinos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.casino-card {
    background: hsl(var(--surface));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 30px;
    align-items: center;
    transition: transform 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
}

.casino-logo img {
    width: 200px;
    height: 160px;
    border-radius: 10px;
}

.casino-info h3 {
    font-size: 2rem;
    color: hsl(var(--primary-color));
    margin-bottom: 15px;
}

.casino-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.casino-features li {
    color: white;
    font-size: 0.95rem;
    padding: 5px 0;
}

.casino-rating {
    text-align: center;
}

.stars {
    margin-bottom: 15px;
}

.star {
    color: hsl(var(--accent-color));
    font-size: 1.5rem;
}

.star.half {
    opacity: 0.5;
}

.bonus-button {
    background: hsl(var(--secondary-color));
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.bonus-button:hover {
    background: hsl(var(--secondary-color) / 0.8);
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 80px 0;
    background: hsl(var(--surface-light));
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: hsl(var(--background));
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.faq-item {
    background: hsl(var(--surface));
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: hsl(var(--surface-light));
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsible Gambling */
.responsible-gambling {
    padding: 80px 0;
    background: hsl(var(--surface-light));
}

.responsible-gambling h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.responsible-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.age-icon {
    width: 60px;
    height: 60px;
}

.age-restriction p,
.responsible-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.help-organizations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.help-organizations a {
    transition: transform 0.3s ease;
}

.help-organizations a:hover {
    transform: scale(1.1);
}

.help-organizations img {
    width: 150px;
    height: 80px;
    object-fit: contain;
}

.footer {
    background: hsl(var(--surface));
    padding: 40px 0 20px;
    border-top: 1px solid hsl(var(--border));
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 30px;
    height: 30px;
}

.footer-brand span {
    color: hsl(var(--primary-color));
    font-weight: bold;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: hsl(var(--primary-color));
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid hsl(var(--border));
}

.footer-bottom p {
    color: white;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: hsl(var(--surface));
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .help-organizations {
        gap: 20px;
    }
    
    .help-organizations img {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .casino-card {
        padding: 20px;
    }
    
    .casino-logo img {
        width: 100px;
    }
}