:root {
    --space-black: #050505;
    --nebula-purple: #7B2CBF;
    --plasma-blue: #4CC9F0;
    --starlight-white: #F8F9FA;
    --void-dark: #10002B;
    --accent-gold: #FFD700;
    --glass-bg: rgba(16, 0, 43, 0.7);
    --border-glow: 1px solid rgba(123, 44, 191, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
}

body {
    background-color: var(--space-black);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(123, 44, 191, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 201, 240, 0.15) 0%, transparent 50%);
    color: var(--starlight-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--starlight-white), var(--plasma-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-family: 'Roboto', sans-serif; /* Readable body font */
    color: #ccc;
    margin-bottom: 1.5rem;
}

/* Mega Header */
.mega-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--nebula-purple);
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--void-dark);
    padding: 5px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--nebula-purple));
}

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

.main-nav a {
    color: var(--starlight-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plasma-blue);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--plasma-blue);
    color: var(--plasma-blue);
    padding: 8px 20px;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register {
    background: linear-gradient(45deg, var(--nebula-purple), var(--plasma-blue));
    border: none;
    color: white;
    padding: 8px 25px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(123, 44, 191, 0.5);
    transition: transform 0.3s;
}

.btn-register:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    height: 600px;
    background: url('images/hero-banner.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding-left: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.stat-box h3 {
    color: var(--accent-gold);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.stat-box span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #aaa;
}

/* Content Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    border-bottom: 3px solid var(--nebula-purple);
    padding-bottom: 10px;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.game-card {
    background: var(--glass-bg);
    border: var(--border-glow);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.4);
}

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

.game-info {
    padding: 15px;
}

.game-info h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 0.8rem;
    color: var(--plasma-blue);
}

/* Text Content Area */
.seo-content {
    background: rgba(255,255,255,0.03);
    padding: 60px;
    border-radius: 20px;
    margin-top: 40px;
}

.seo-content h3 {
    color: var(--accent-gold);
    margin-top: 30px;
}

.seo-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.seo-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.seo-content li::before {
    content: '►';
    color: var(--plasma-blue);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Footer */
.mega-footer {
    background: #020202;
    padding: 80px 0 30px;
    border-top: 3px solid var(--nebula-purple);
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--plasma-blue);
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.payment-icons i {
    font-size: 2rem;
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .main-nav { display: none; } /* Mobile menu to be implemented */
}
