/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Fluid typography base */
html { font-size: 100%; }
@media (max-width: 1200px) { html { font-size: 98%; } }
@media (max-width: 992px)  { html { font-size: 96%; } }
@media (max-width: 768px)  { html { font-size: 94%; } }
@media (max-width: 576px)  { html { font-size: 92%; } }
@media (max-width: 420px)  { html { font-size: 90%; } }

/* Global heading scales (desktop first, scale down via html font-size) */
h1, .section-title, .page-header h1 { line-height: 1.15; }
h2 { line-height: 1.2; }
h3 { line-height: 1.25; }
p, li { line-height: 1.7; }

/* Clamp-based sizing for major titles to ensure readability on very small screens */
.hero-content h1 { font-size: clamp(2rem, 6vw, 4rem); }
.hero-content p { font-size: clamp(1rem, 2.8vw, 1.5rem); }
.section-title { font-size: clamp(1.6rem, 4.5vw, 3rem); }
.page-header h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
.page-header p { font-size: clamp(1rem, 3.2vw, 1.3rem); }
.game-card p, .feature-card p, .review-text, .legal-text p, .about-text p { font-size: clamp(0.95rem, 2.7vw, 1rem); }
.game-card h3, .feature-card h3, .value-item h3 { font-size: clamp(1.1rem, 3.5vw, 1.5rem); }
.legal-text h2 { font-size: clamp(1.2rem, 3.8vw, 1.8rem); }
.legal-text h3 { font-size: clamp(1.05rem, 3.4vw, 1.4rem); }
.write-review-section h2, .contact-form-section h2, .contact-info-section h2 { font-size: clamp(1.4rem, 4.2vw, 2rem); }

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
}

.domain-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #FFD700;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Burger button */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.burger:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: #FFD700;
}

.burger-lines {
    position: relative;
    width: 22px;
    height: 2px;
    background: #fff;
}

.burger-lines::before,
.burger-lines::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.burger-lines::before { top: -7px; }
.burger-lines::after { top: 7px; }

.burger.active .burger-lines { background: transparent; }
.burger.active .burger-lines::before { top: 0; transform: rotate(45deg); }
.burger.active .burger-lines::after { top: 0; transform: rotate(-45deg); }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(26, 26, 46, 0.8) 25%, 
                rgba(22, 33, 62, 0.8) 50%, 
                rgba(0, 0, 0, 0.8) 100%),
                linear-gradient(45deg, 
                #0a0a0a 0%, 
                #1a1a2e 25%, 
                #16213e 50%, 
                #0a0a0a 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    max-width: 1000px;
}

.cta-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover::after {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-card .play-button {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover .play-button {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.game-card h3,
.game-card p,
.game-card .game-stats {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.game-card:hover h3,
.game-card:hover p,
.game-card:hover .game-stats {
    opacity: 0.3;
    transform: scale(0.95);
}

.game-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.game-iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.play-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.play-button:hover::before {
    left: 100%;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Reviews Section */
.reviews-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    margin-right: 1rem;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Game Stats */
.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rating {
    color: #FFD700;
}

.reviews {
    color: #ffffff;
    opacity: 0.7;
}

/* Review Game */
.review-game {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 2px solid #FFD700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.copyright {
    color: #ffffff;
    opacity: 0.7;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 2px solid #FFD700;
    position: relative;
}

.modal h2 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.modal p {
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.modal-button.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.modal-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.modal-button:hover {
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 2rem;
    border-top: 2px solid #FFD700;
    z-index: 1500;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    color: #ffffff;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button.accept {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.cookie-button.decline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-button:hover {
    transform: scale(1.05);
}

/* Legal Pages Styles */
.legal-content {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.legal-text h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    color: #FFD700;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.legal-text h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

.legal-text p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-text ul {
    color: #ffffff;
    margin: 1rem 0;
    padding-left: 2rem;
    opacity: 0.9;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #FFA500;
    text-decoration: underline;
}

/* Responsible Gaming Specific Styles */
.important-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.show-more-btn {
    display: flex;
    width: fit-content;
    margin: 0 auto !important;
}

.important-box h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guideline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.guideline-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.guideline-card h3 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.guideline-card p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.help-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

.help-card h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.help-card p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.help-card a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.help-card a:hover {
    color: #FFA500;
    text-decoration: underline;
}

.emergency-box {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid #DC143C;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.emergency-box h3 {
    color: #DC143C;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.emergency-box p {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-content {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.about-text h2 {
    color: #FFD700;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.about-text p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.value-item h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.commitment-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.commitment-box h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.commitment-box ul {
    color: #ffffff;
    margin: 0;
    padding-left: 2rem;
    opacity: 0.9;
}

.commitment-box li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
}

.contact-item h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-section h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(26, 26, 46, 0.8) 25%, 
                rgba(22, 33, 62, 0.8) 50%, 
                rgba(0, 0, 0, 0.8) 100%),
                linear-gradient(45deg, 
                #0a0a0a 0%, 
                #1a1a2e 25%, 
                #16213e 50%, 
                #0a0a0a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Games Page Styles */
.games-filter {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    border-bottom: 2px solid #FFD700;
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Games page dynamic elements moved from JS */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.game-provider {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}
.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}
.feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Index review cards and CTA styles moved from JS */
.review-card { /* already styled above but ensure base here */ }
.review-name { color: #FFD700; font-weight: bold; font-size: 1.1rem; }
.review-rating { color: #FFD700; font-size: 1rem; margin-top: 0.2rem; }
.review-text { color: #ffffff; line-height: 1.6; margin-bottom: 1rem; font-size: 0.95rem; }
.show-more-container { text-align: center; margin-top: 3rem; }

.categories-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-count {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Reviews Page Styles */
.reviews-filter {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    border-bottom: 2px solid #FFD700;
}

.write-review-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 5rem 0;
}

.write-review-section h2 {
    color: #FFD700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.write-review-section p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #FFD700;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #FFD700;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-section h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-info-section h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.contact-method .icon {
    font-size: 2rem;
    margin-right: 1rem;
    color: #FFD700;
}

.contact-method .info h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.contact-method .info p {
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
}

.faq-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 5rem 0;
}

.faq-section h2 {
    color: #FFD700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    .logo-section { flex: 1; }
    .burger { display: inline-flex; }
    .nav {
        position: fixed;
        top: 70px; /* approx header height */
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        background: rgba(0, 0, 0, 0.96);
        border-top: 2px solid #FFD700;
        padding: 1rem 1.25rem 1.5rem 1.25rem;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.2s ease;
        z-index: 999;
    }
    .nav a { font-size: 1rem; padding: 0.5rem 0; }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .review-form {
        padding: 2rem;
    }

    /* Typography tightening for small screens */
    .legal-text { padding: 2rem; }
    .legal-text p { line-height: 1.7; }
    .about-text { padding: 2rem; }
    .features-grid, .values-list, .guidelines-grid, .help-resources { gap: 1.25rem; }
    .games-section { padding: 3.5rem 0; }
    .reviews-section { padding: 3.5rem 0; }
}

@media (max-width: 576px) {
    .container { padding: 0 1rem; }
    .reviews-grid, .features-grid, .help-resources { padding: 0 1rem; }
}

/* Contact page responsive enhancements */
.contact-content { padding: 4rem 0; }
.contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .contact-content { padding: 3rem 0; }
    .contact-form-section h2 { margin-bottom: 1.25rem; }
    .contact-info-section { padding: 2rem; }
}
@media (max-width: 576px) {
    .contact-info-section { padding: 1.5rem; }
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    font-size: 1rem;
    min-height: 44px; /* touch target */
}
.contact-form .form-group textarea { min-height: 140px; }
.contact-form .cta-button { width: 100%; max-width: 480px; }

.contact-methods { display: grid; gap: 1rem; }
@media (min-width: 576px) {
    .contact-methods { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* How to Play Section */
.how-to-play {
    background: rgba(0, 0, 0, 0.3);
    padding: 5rem 0;
}

.how-to-play .section-title {
    text-align: center;
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin: 1rem 0 1rem 0;
}

.step-card p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}
