/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #ffd700;
}

.btn-play {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-play:hover {
    background-color: #e55a2b;
}

/* Disclaimer Bar */
.disclaimer-bar {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.disclaimer-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.disclaimer-icon {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero h1 .highlight {
    color: #ffd700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero .btn-play {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: #2c2c2c;
}

.section-title h2 .highlight {
    color: #ff6b35;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:nth-child(2) {
    background-color: #f8f9fa;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.benefit-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
}

.benefit-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.benefit-card p {
    color: #666;
}

/* Game Card Section */
.game-card-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.game-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-content {
    padding: 2rem;
}

.game-card-content h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.game-card-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0;
}

.responsible-gaming-content {
    text-align: center;
}

.responsible-gaming-text {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.responsible-gaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.responsible-gaming-logos a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.responsible-gaming-logos a:hover {
    opacity: 0.7;
}

.responsible-gaming-logos img {
    width: 150px;
    height: 60px;
    object-fit: contain;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 0.875rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
}

.cookie-banner-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cookie-banner-btn-accept {
    background-color: #ff6b35;
    color: #ffffff;
}

.cookie-banner-btn-decline {
    background-color: #666;
    color: #ffffff;
}

.cookie-banner-btn:hover {
    opacity: 0.9;
}

/* Game Page */
.game-page-header {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.how-to-play {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.how-to-play h2 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.how-to-play ol {
    margin-left: 1.5rem;
    color: #555;
}

.how-to-play li {
    margin-bottom: 0.75rem;
}

.game-iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    aspect-ratio: 16 / 9;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Forms */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #e55a2b;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: #2c2c2c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #2c2c2c;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        grid-template-columns: 1fr;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner-btn {
        flex: 1;
    }

    .responsible-gaming-logos {
        flex-direction: column;
    }

    .responsible-gaming-logos img {
        width: 120px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0;
    }

    .form-section,
    .legal-content {
        padding: 1.5rem;
    }
}

