/* 
 * galerabet - Tropical Cyber-Gold Theme
 * 2025 SEO Optimized Version
 */

:root {
    --primary-color: #00FF88; /* Neon Green */
    --secondary-color: #050505; /* Deep Void Black */
    --accent-color: #FFD700; /* Cyber Gold */
    --text-color: #FFFFFF;
    --text-muted: #B0B0B0;
    --card-bg: #111111;
    --border-color: #333333;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 18px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-color);
    position: relative;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.cta-btn {
    background: linear-gradient(45deg, var(--primary-color), #00cc6a);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.cta-btn:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--secondary-color) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    color: var(--text-color);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ddd;
}

.hero-btn {
    font-size: 1.5rem;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.hero-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Games Grid */
.games-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    box-shadow: 0 0 10px var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.game-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img img {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.play-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.game-card:hover .play-btn {
    background: var(--primary-color);
    color: #000;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #222;
}

.content-block {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
}

.content-block h2 {
    color: var(--accent-color);
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: #151515;
    border-radius: 10px;
    border: 1px solid #333;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
}

/* FAQ */
.faq-item {
    background: #151515;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-color);
}

.faq-question:hover {
    background: #222;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #111;
    color: #ccc;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-col ul li a {
    color: #888;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.payment-icon {
    background: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
}

.license-badge {
    border: 1px solid #444;
    padding: 15px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 8px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--primary-color);
    }

    nav ul.show {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: #0a0a0a;
    color: #888;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs span {
    margin: 0 10px;
}

/* Article Styles */
article {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

article h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

article h2 {
    font-size: 2rem;
    margin-top: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

article p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

article ul, article ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #ccc;
}

article li {
    margin-bottom: 10px;
}

.highlight-box {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

/* Sticky Footer Warning */
.responsible-warning {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS if needed */
}
