/**
 * Scandal Gaming Platform - Main Stylesheet
 * @version 1.0.0
 * @prefix g0f2-
 */

/* CSS Variables */
:root {
    --g0f2-bg-primary: #141414;
    --g0f2-bg-secondary: #36454F;
    --g0f2-text-primary: #ffffff;
    --g0f2-text-secondary: #778899;
    --g0f2-text-muted: #6C757D;
    --g0f2-accent: #FFD700;
    --g0f2-accent-hover: #FFA500;
    --g0f2-success: #28a745;
    --g0f2-danger: #dc3545;
    --g0f2-gradient: linear-gradient(135deg, #141414 0%, #36454F 100%);
    --g0f2-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --g0f2-radius: 8px;
    --g0f2-radius-lg: 16px;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--g0f2-bg-primary);
    color: var(--g0f2-text-primary);
    line-height: 1.5;
    font-size: 1.4rem;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Container */
.g0f2-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* Header */
.g0f2-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--g0f2-bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
}

.g0f2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
}

.g0f2-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.g0f2-logo img {
    width: 28px;
    height: 28px;
}

.g0f2-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g0f2-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.g0f2-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g0f2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--g0f2-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 36px;
}

.g0f2-btn-primary {
    background: var(--g0f2-accent);
    color: var(--g0f2-bg-primary);
}

.g0f2-btn-primary:hover {
    background: var(--g0f2-accent-hover);
    transform: scale(1.05);
}

.g0f2-btn-outline {
    background: transparent;
    color: var(--g0f2-text-primary);
    border: 1px solid var(--g0f2-text-secondary);
}

.g0f2-btn-outline:hover {
    border-color: var(--g0f2-accent);
    color: var(--g0f2-accent);
}

.g0f2-menu-toggle {
    background: transparent;
    border: none;
    color: var(--g0f2-text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.g0f2-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--g0f2-bg-secondary);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.g0f2-menu-active {
    right: 0;
}

.g0f2-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.g0f2-overlay-active {
    opacity: 1;
    visibility: visible;
}

.g0f2-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.g0f2-menu-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g0f2-accent);
}

.g0f2-menu-close {
    background: transparent;
    border: none;
    color: var(--g0f2-text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.g0f2-menu-nav {
    list-style: none;
}

.g0f2-menu-nav li {
    margin-bottom: 0.5rem;
}

.g0f2-menu-nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: var(--g0f2-radius);
    color: var(--g0f2-text-primary);
    transition: all 0.3s ease;
}

.g0f2-menu-nav a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--g0f2-accent);
}

.g0f2-menu-nav i {
    width: 20px;
    text-align: center;
}

/* Main Content */
.g0f2-main {
    padding-top: 56px;
}

@media (max-width: 768px) {
    .g0f2-main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.g0f2-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--g0f2-radius);
    margin-bottom: 1.5rem;
}

.g0f2-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.g0f2-carousel-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.g0f2-carousel-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.g0f2-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.g0f2-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.g0f2-dot-active {
    background: var(--g0f2-accent);
    width: 20px;
    border-radius: 4px;
}

/* Section Titles */
.g0f2-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--g0f2-text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g0f2-section-title i {
    color: var(--g0f2-accent);
}

/* Game Grid */
.g0f2-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.g0f2-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.g0f2-game-item:hover {
    transform: scale(1.05);
}

.g0f2-game-img {
    width: 60px;
    height: 60px;
    border-radius: var(--g0f2-radius);
    object-fit: cover;
    margin-bottom: 0.4rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.g0f2-game-item:hover .g0f2-game-img {
    border-color: var(--g0f2-accent);
}

.g0f2-game-name {
    font-size: 1rem;
    color: var(--g0f2-text-secondary);
    text-align: center;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Section */
.g0f2-category-section {
    margin-bottom: 2rem;
}

.g0f2-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.g0f2-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g0f2-accent);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Content Cards */
.g0f2-card {
    background: var(--g0f2-bg-secondary);
    border-radius: var(--g0f2-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.g0f2-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--g0f2-accent);
}

.g0f2-card-text {
    color: var(--g0f2-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Promo Link */
.g0f2-promo-link {
    color: var(--g0f2-accent);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.g0f2-promo-link:hover {
    color: var(--g0f2-accent-hover);
    text-decoration: underline;
}

.g0f2-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--g0f2-accent) 0%, var(--g0f2-accent-hover) 100%);
    color: var(--g0f2-bg-primary);
    border-radius: var(--g0f2-radius);
    font-weight: 700;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g0f2-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--g0f2-shadow);
}

/* Footer */
.g0f2-footer {
    background: var(--g0f2-bg-secondary);
    padding: 2rem 1rem 6rem;
    margin-top: 2rem;
}

.g0f2-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.g0f2-footer-desc {
    color: var(--g0f2-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.g0f2-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.g0f2-footer-link {
    padding: 0.6rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--g0f2-radius);
    font-size: 1.2rem;
    color: var(--g0f2-accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.g0f2-footer-link:hover {
    background: var(--g0f2-accent);
    color: var(--g0f2-bg-primary);
}

.g0f2-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.g0f2-footer-nav a {
    color: var(--g0f2-text-secondary);
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    transition: color 0.3s ease;
}

.g0f2-footer-nav a:hover {
    color: var(--g0f2-accent);
}

.g0f2-footer-copyright {
    text-align: center;
    color: var(--g0f2-text-muted);
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Bottom Navigation */
.g0f2-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, var(--g0f2-bg-secondary) 0%, var(--g0f2-bg-primary) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.g0f2-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.g0f2-nav-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.g0f2-nav-item.active {
    background: rgba(255, 215, 0, 0.15);
}

.g0f2-nav-item.active .g0f2-nav-icon {
    color: var(--g0f2-accent);
}

.g0f2-nav-icon {
    font-size: 22px;
    color: var(--g0f2-text-secondary);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.g0f2-nav-item:hover .g0f2-nav-icon {
    color: var(--g0f2-accent);
}

.g0f2-nav-text {
    font-size: 10px;
    color: var(--g0f2-text-muted);
    transition: color 0.3s ease;
}

.g0f2-nav-item:hover .g0f2-nav-text,
.g0f2-nav-item.active .g0f2-nav-text {
    color: var(--g0f2-accent);
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
    .g0f2-bottom-nav {
        display: none;
    }

    .g0f2-footer {
        padding-bottom: 2rem;
    }
}

/* FAQ Section */
.g0f2-faq-item {
    background: var(--g0f2-bg-secondary);
    border-radius: var(--g0f2-radius);
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.g0f2-faq-question {
    padding: 1.2rem;
    font-weight: 600;
    color: var(--g0f2-text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.g0f2-faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: var(--g0f2-text-secondary);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Features List */
.g0f2-features-list {
    list-style: none;
}

.g0f2-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.g0f2-features-list li:last-child {
    border-bottom: none;
}

.g0f2-features-list i {
    color: var(--g0f2-success);
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

/* Stats Grid */
.g0f2-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.g0f2-stat-item {
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--g0f2-radius);
    padding: 1rem;
    text-align: center;
}

.g0f2-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--g0f2-accent);
}

.g0f2-stat-label {
    font-size: 1.1rem;
    color: var(--g0f2-text-muted);
    margin-top: 0.4rem;
}

/* Payment Methods */
.g0f2-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.g0f2-payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: var(--g0f2-radius);
    font-size: 1.2rem;
    color: var(--g0f2-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Testimonials */
.g0f2-testimonial {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--g0f2-radius-lg);
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--g0f2-accent);
}

.g0f2-testimonial-text {
    color: var(--g0f2-text-secondary);
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.g0f2-testimonial-author {
    color: var(--g0f2-accent);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Winners Showcase */
.g0f2-winners-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.g0f2-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 215, 0, 0.05);
    padding: 0.8rem 1rem;
    border-radius: var(--g0f2-radius);
}

.g0f2-winner-game {
    font-weight: 600;
    color: var(--g0f2-text-primary);
}

.g0f2-winner-amount {
    color: var(--g0f2-accent);
    font-weight: 700;
}

/* Utility Classes */
.g0f2-text-center {
    text-align: center;
}

.g0f2-mb-1 {
    margin-bottom: 0.5rem;
}

.g0f2-mb-2 {
    margin-bottom: 1rem;
}

.g0f2-mb-3 {
    margin-bottom: 1.5rem;
}

.g0f2-mb-4 {
    margin-bottom: 2rem;
}

.g0f2-hidden-desktop {
    display: block;
}

@media (min-width: 769px) {
    .g0f2-hidden-desktop {
        display: none;
    }
}

/* Animation */
.g0f2-loaded .g0f2-card,
.g0f2-loaded .g0f2-game-item {
    animation: g0f2-fadeIn 0.5s ease forwards;
}

@keyframes g0f2-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
