
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --white: #ffffff;
    --cream: #fcfaf5;
    --text-main: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--cream); color: var(--text-main); line-height: 1.6; }
h1, h2, h3, h4, .brand-font { font-family: 'Cinzel', serif; color: var(--navy); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Header */
header { background-color: var(--navy); padding: 1.5rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border-bottom: 2px solid var(--gold); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo-container { display: flex; align-items: center; gap: 1rem; }
.logo-img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); }
.logo-text { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--white); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--gold); }

/* Main layout */
main { margin-top: 90px; min-height: calc(100vh - 90px - 300px); }

/* Hero Section */
.hero { display: flex; align-items: center; justify-content: space-between; background-color: var(--navy); min-height: 70vh; padding: 0 5%; position: relative; overflow: hidden; }
.hero-content { flex: 1; z-index: 2; padding-right: 2rem; }
.hero-content h1 { color: var(--gold); font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content p { color: var(--white); font-size: 1.2rem; margin-bottom: 2rem; max-width: 600px; }
.btn-gold { display: inline-block; background-color: var(--gold); color: var(--navy); padding: 1rem 2.5rem; font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; border-radius: 4px; transition: all 0.3s ease; border: 1px solid var(--gold); }
.btn-gold:hover { background-color: transparent; color: var(--gold); }
.hero-img-container { flex: 1; height: 100%; display: flex; justify-content: flex-end; }
.hero-img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); border: 3px solid var(--gold); }

/* Inner Page Header */
.inner-hero { background-color: var(--navy); padding: 6rem 2rem 4rem; text-align: center; border-bottom: 2px solid var(--gold); }
.inner-hero h1 { color: var(--gold); font-size: 3rem; margin-bottom: 1rem; }
.inner-hero p { color: var(--white); max-width: 800px; margin: 0 auto; }

/* Content Section */
.content-section { max-width: 1000px; margin: 4rem auto; padding: 0 2rem; }
.content-section h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem; }
.content-section p, .content-section ul { margin-bottom: 1.5rem; color: #444; }
.content-section ul { padding-left: 2rem; }

/* Grid / Games */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; max-width: 1200px; margin: 4rem auto; padding: 0 2rem; }
.game-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); border: 1px solid #eee; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.game-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(10, 25, 47, 0.15); border-color: var(--gold); }
.game-img { width: 100%; height: 250px; object-fit: cover; border-bottom: 2px solid var(--gold); }
.game-info { padding: 2rem; text-align: center; flex-grow: 1; display: flex; flex-direction: column; }
.game-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.game-info p { color: #666; margin-bottom: 1.5rem; flex-grow: 1; }
.btn-outline { display: inline-block; border: 2px solid var(--navy); color: var(--navy); padding: 0.8rem 2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Footer */
footer { background-color: var(--navy); color: var(--white); padding: 4rem 2rem 2rem; border-top: 4px solid var(--gold); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: #ccc; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { color: #ccc; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.8rem; color: #888; }
.compliance-logos { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; align-items: center; }
.compliance-logos span { font-weight: bold; font-size: 1.5rem; border: 2px solid #888; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: #888; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--navy-light); border-top: 2px solid var(--gold); padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; z-index: 9999; color: var(--white); }
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: 0.9rem; max-width: 800px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btn { background: var(--gold); color: var(--navy); border: none; padding: 0.8rem 2rem; font-weight: bold; cursor: pointer; border-radius: 4px; font-family: 'Cinzel', serif; }

/* Iframe Game */
.game-container { width: 100%; height: calc(100vh - 90px); background: #000; }
.game-container iframe { width: 100%; height: 100%; border: none; }
