/* CSS ARCHITECTURE & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700&display=swap');

:root {
    /* Color System */
    --bg-primary: #05080a;
    --bg-secondary: #0b1512;
    --card-bg: rgba(139, 92, 246, 0.08);
    --accent-primary: #14532d;
    --accent-secondary: #22c55e;
    --highlight-glow: #a3e635;
    --text-primary: #f8fafc;
    --text-secondary: #a1a1aa;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    --gradient-glow: radial-gradient(circle, rgba(163,230,53,0.15) 0%, rgba(5,8,10,0) 70%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1400px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ATMOSPHERIC BACKGROUND */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: url('images/photo-1542273917363-3b1817f69a5d.png') center/cover no-repeat;
    opacity: 0.12;
    z-index: -2;
}
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: radial-gradient(circle at 50% 30%, rgba(11,21,18,0.7) 0%, var(--bg-primary) 80%);
    z-index: -1;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 4rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
a { text-decoration: none; color: var(--text-primary); transition: var(--transition); }

/* LAYOUT & UTILITIES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 60px;
}

.section-padding {
    padding: 100px 0;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* HEADER / NAV */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(5, 8, 10, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(163, 230, 53, 0.1);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: var(--highlight-glow); }

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

.header-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%;
    height: 2px;
    background: var(--highlight-glow);
    transition: var(--transition);
    border-radius: 2px;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
    box-shadow: 0 0 10px var(--highlight-glow);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 230, 53, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--highlight-glow);
}

/* HERO SECTION */
.hero-section {
    padding: 180px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.hero-text h1 span {
    color: var(--highlight-glow);
    text-shadow: 0 0 20px rgba(163, 230, 53, 0.3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(163, 230, 53, 0.1);
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: var(--gradient-glow);
    z-index: -1;
    border-radius: 50%;
}

/* GAME SECTION */
.game-section {
    position: relative;
    z-index: 10;
}

.game-wrapper {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 10px;
    border: 1px solid rgba(163, 230, 53, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(34, 197, 94, 0.1);
    transition: var(--transition);
    max-width: 1300px;
    margin: 40px auto 20px;
}

.game-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(163, 230, 53, 0.2);
    border-color: rgba(163, 230, 53, 0.3);
}

.game-container {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.disclaimer-banner {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(163, 230, 53, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.disclaimer-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.disclaimer-banner strong {
    color: var(--text-primary);
}

/* CARDS / FEATURES */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(163, 230, 53, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--highlight-glow);
}

/* FORMS (Contact Page) */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--highlight-glow);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* PAGE HEADER (Internal Pages) */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(11,21,18,0.8), transparent);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    margin-top: 40px;
    color: var(--highlight-glow);
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--highlight-glow);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--highlight-glow);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* RESPONSIBLE GAMING PAGE SPECIFIC */
.rg-card {
    border-left: 4px solid var(--highlight-glow);
    background: var(--card-bg);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
}