/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #C6DAEB;

}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
}

.primary-btn {
    background-color: #3498db;
    color: #fff;
}

.primary-btn:hover {
    background-color: #2980b9;
}

.secondary-btn {
    background-color: #34495e;
    color: #fff;
}

.secondary-btn:hover {
    background-color: #2c3e50;
}

/* Header */
header {
    padding: 1rem 0;
}

.header-top {
    padding-bottom: 0.5rem;
}

.warning-message {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.warning-message p {
    margin: 0;
}

.warning-message .icon {
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #000000;
    font-weight: 500;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background-color: #34495e;
    color: #fff;
    padding: 4rem 0;
    position: relative;
}

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

.hero-image {
    margin-top: 2rem;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about p {
    margin-left: auto;
    margin-right: auto;
}

.about .btn {
    margin-top: 1.5rem;
}

/* Games Section */
.games {
    padding: 4rem 0;
}

.games h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.game-info {
    padding: 1.5rem;
    text-align: center;
}

.game-info h3 {
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.testimonial-content h3 {
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #7f8c8d;
}

/* Contact Form Section */
.contact {
    background-color: #34495e;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact input, 
.contact textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.contact .btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-info {
    margin-top: 2rem;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.platform-icon {
    margin: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-icon img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.responsible-gaming {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.responsible-gaming a {
    margin: 0 1rem;
}

.responsible-gaming img {
    height: 40px;
}

.copyright {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Popups */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: #333;
}

.popup h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .main-nav {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-profile img {
        margin: 0 0 1rem 0;
    }
    
    .platforms {
        flex-direction: column;
        align-items: center;
    }
}

.about iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .popup-buttons {
        flex-direction: column;
    }
    
    .popup-buttons button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }

    .about iframe {
        height: 300px;
    }
}

.main-section {
    padding: 4rem 0;
}

.footer-links   {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}