/**
 * Gamezone APK - Main Stylesheet
 * Website: gamezoneapk.click
 * CSS Class Prefix: gd6c-
 * Color Palette: #262626 | #7FFF00 | #FFB347 | #FFEF94
 * Version: 1.0.0
 */

/* ==================== CSS Variables ==================== */
:root {
    --gd6c-bg-dark: #262626;
    --gd6c-accent-green: #7FFF00;
    --gd6c-accent-orange: #FFB347;
    --gd6c-accent-cream: #FFEF94;
    --gd6c-text-light: #ffffff;
    --gd6c-text-muted: #b0b0b0;
    --gd6c-bg-card: #1a1a1a;
    --gd6c-bg-hover: #333333;
    --gd6c-border: #404040;
    --gd6c-shadow: rgba(0, 0, 0, 0.3);
    --gd6c-gradient-main: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
    --gd6c-gradient-accent: linear-gradient(135deg, #7FFF00 0%, #5cb300 100%);
    --gd6c-radius-sm: 4px;
    --gd6c-radius-md: 8px;
    --gd6c-radius-lg: 12px;
    --gd6c-radius-full: 50px;
    --gd6c-transition: all 0.3s ease;
}

/* ==================== Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gd6c-bg-dark);
    color: var(--gd6c-text-light);
    line-height: 1.5;
    font-size: 1.6rem;
    min-height: 100vh;
}

a {
    color: var(--gd6c-accent-green);
    text-decoration: none;
    transition: var(--gd6c-transition);
}

a:hover {
    color: var(--gd6c-accent-cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== Container ==================== */
.gd6c-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gd6c-wrapper {
    padding: 1rem 0;
}

/* ==================== Header ==================== */
.gd6c-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gd6c-gradient-main);
    padding: 1rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--gd6c-shadow);
    transition: var(--gd6c-transition);
}

.gd6c-header-scrolled {
    background: rgba(38, 38, 38, 0.98);
    padding: 0.8rem 1.5rem;
}

.gd6c-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.gd6c-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gd6c-logo img {
    width: 32px;
    height: 32px;
}

.gd6c-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gd6c-accent-green);
}

.gd6c-header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.gd6c-btn {
    padding: 0.8rem 1.6rem;
    border-radius: var(--gd6c-radius-full);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--gd6c-transition);
    text-align: center;
}

.gd6c-btn-primary {
    background: var(--gd6c-gradient-accent);
    color: var(--gd6c-bg-dark);
}

.gd6c-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(127, 255, 0, 0.3);
}

.gd6c-btn-secondary {
    background: transparent;
    border: 2px solid var(--gd6c-accent-orange);
    color: var(--gd6c-accent-orange);
}

.gd6c-btn-secondary:hover {
    background: var(--gd6c-accent-orange);
    color: var(--gd6c-bg-dark);
}

.gd6c-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gd6c-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ==================== Navigation Menu ==================== */
.gd6c-nav-desktop {
    display: none;
}

.gd6c-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--gd6c-bg-card);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.gd6c-menu-active {
    right: 0;
}

.gd6c-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: var(--gd6c-transition);
}

.gd6c-overlay-active {
    opacity: 1;
    visibility: visible;
}

.gd6c-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gd6c-border);
}

.gd6c-menu-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gd6c-accent-green);
}

.gd6c-menu-close {
    background: transparent;
    border: none;
    color: var(--gd6c-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.gd6c-nav-list {
    list-style: none;
}

.gd6c-nav-item {
    margin-bottom: 0.5rem;
}

.gd6c-nav-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--gd6c-text-light);
    font-size: 1.5rem;
    border-radius: var(--gd6c-radius-md);
    transition: var(--gd6c-transition);
}

.gd6c-nav-link:hover {
    background: var(--gd6c-bg-hover);
    color: var(--gd6c-accent-green);
}

/* ==================== Main Content ==================== */
.gd6c-main {
    padding-top: 70px;
}

@media (max-width: 768px) {
    .gd6c-main {
        padding-bottom: 80px;
    }
}

/* ==================== Carousel/Slider ==================== */
.gd6c-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--gd6c-radius-lg) var(--gd6c-radius-lg);
}

.gd6c-slides {
    position: relative;
    height: 200px;
}

.gd6c-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.gd6c-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gd6c-slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.gd6c-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--gd6c-transition);
}

.gd6c-dot-active {
    background: var(--gd6c-accent-green);
    transform: scale(1.2);
}

/* ==================== Section Styles ==================== */
.gd6c-section {
    padding: 2rem 1.5rem;
}

.gd6c-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gd6c-accent-cream);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gd6c-section-subtitle {
    font-size: 1.4rem;
    color: var(--gd6c-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* ==================== Game Grid ==================== */
.gd6c-game-section {
    padding: 2rem 1rem;
}

.gd6c-game-category-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gd6c-accent-orange);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid var(--gd6c-accent-green);
}

.gd6c-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gd6c-game-card {
    background: var(--gd6c-bg-card);
    border-radius: var(--gd6c-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--gd6c-transition);
    border: 1px solid var(--gd6c-border);
}

.gd6c-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--gd6c-accent-green);
    box-shadow: 0 8px 20px var(--gd6c-shadow);
}

.gd6c-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gd6c-game-name {
    padding: 0.6rem;
    font-size: 1.1rem;
    text-align: center;
    color: var(--gd6c-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd6c-touch-active {
    transform: scale(0.98);
}

/* ==================== Info Cards ==================== */
.gd6c-info-card {
    background: var(--gd6c-bg-card);
    border-radius: var(--gd6c-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gd6c-border);
}

.gd6c-info-card h3 {
    font-size: 1.8rem;
    color: var(--gd6c-accent-green);
    margin-bottom: 1rem;
}

.gd6c-info-card p {
    font-size: 1.4rem;
    color: var(--gd6c-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gd6c-info-card ul {
    list-style: none;
    padding-left: 0;
}

.gd6c-info-card li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gd6c-border);
    font-size: 1.4rem;
    color: var(--gd6c-text-light);
}

.gd6c-info-card li:last-child {
    border-bottom: none;
}

/* ==================== Feature List ==================== */
.gd6c-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gd6c-feature-item {
    background: var(--gd6c-bg-card);
    padding: 1.5rem;
    border-radius: var(--gd6c-radius-md);
    text-align: center;
    border: 1px solid var(--gd6c-border);
    transition: var(--gd6c-transition);
}

.gd6c-feature-item:hover {
    border-color: var(--gd6c-accent-green);
}

.gd6c-feature-icon {
    font-size: 2.8rem;
    color: var(--gd6c-accent-orange);
    margin-bottom: 0.8rem;
}

.gd6c-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gd6c-text-light);
}

/* ==================== CTA Section ==================== */
.gd6c-cta {
    background: var(--gd6c-gradient-accent);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: var(--gd6c-radius-lg);
    margin: 2rem 1.5rem;
}

.gd6c-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gd6c-bg-dark);
    margin-bottom: 1rem;
}

.gd6c-cta-text {
    font-size: 1.4rem;
    color: var(--gd6c-bg-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gd6c-cta .gd6c-btn {
    background: var(--gd6c-bg-dark);
    color: var(--gd6c-accent-green);
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
}

.gd6c-cta .gd6c-btn:hover {
    background: var(--gd6c-bg-card);
    transform: scale(1.05);
}

/* ==================== Footer ==================== */
.gd6c-footer {
    background: var(--gd6c-bg-card);
    padding: 2rem 1.5rem 3rem;
    border-top: 1px solid var(--gd6c-border);
}

.gd6c-footer-desc {
    font-size: 1.3rem;
    color: var(--gd6c-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gd6c-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gd6c-footer-link {
    font-size: 1.2rem;
    color: var(--gd6c-text-muted);
    transition: var(--gd6c-transition);
}

.gd6c-footer-link:hover {
    color: var(--gd6c-accent-green);
}

.gd6c-partners {
    margin-bottom: 2rem;
}

.gd6c-partners-title {
    font-size: 1.3rem;
    color: var(--gd6c-text-muted);
    margin-bottom: 1rem;
}

.gd6c-partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gd6c-partner-logo {
    width: 50px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--gd6c-transition);
}

.gd6c-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.gd6c-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gd6c-text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid var(--gd6c-border);
}

/* ==================== Bottom Navigation ==================== */
.gd6c-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gd6c-bg-card);
    border-top: 1px solid var(--gd6c-border);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    padding: 0 0.5rem;
}

@media (min-width: 769px) {
    .gd6c-bottom-nav {
        display: none;
    }
}

.gd6c-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: transparent;
    border: none;
    color: var(--gd6c-text-muted);
    cursor: pointer;
    transition: var(--gd6c-transition);
    padding: 0.5rem;
}

.gd6c-nav-btn:hover,
.gd6c-nav-btn-active {
    color: var(--gd6c-accent-green);
}

.gd6c-nav-btn:active {
    transform: scale(0.95);
}

.gd6c-nav-btn i,
.gd6c-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 0.3rem;
}

.gd6c-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* ==================== Utilities ==================== */
.gd6c-text-center {
    text-align: center;
}

.gd6c-mb-1 {
    margin-bottom: 1rem;
}

.gd6c-mb-2 {
    margin-bottom: 2rem;
}

.gd6c-highlight {
    color: var(--gd6c-accent-green);
    font-weight: 600;
}

.gd6c-divider {
    height: 1px;
    background: var(--gd6c-border);
    margin: 2rem 0;
}

/* ==================== Promotional Text Link ==================== */
.gd6c-promo-link {
    display: inline;
    color: var(--gd6c-accent-orange);
    font-weight: 600;
    cursor: pointer;
    transition: var(--gd6c-transition);
}

.gd6c-promo-link:hover {
    color: var(--gd6c-accent-cream);
    text-decoration: underline;
}

/* ==================== RTP Section ==================== */
.gd6c-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gd6c-rtp-item {
    background: var(--gd6c-bg-card);
    padding: 1rem;
    border-radius: var(--gd6c-radius-md);
    text-align: center;
    border: 1px solid var(--gd6c-border);
}

.gd6c-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gd6c-accent-green);
}

.gd6c-rtp-label {
    font-size: 1.1rem;
    color: var(--gd6c-text-muted);
}

/* ==================== Responsive Adjustments ==================== */
@media (max-width: 768px) {
    .gd6c-header {
        padding: 0.8rem 1rem;
    }

    .gd6c-header-actions .gd6c-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }

    .gd6c-menu-toggle {
        display: block;
    }

    .gd6c-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .gd6c-game-name {
        font-size: 1rem;
    }
}

@media (min-width: 431px) and (max-width: 768px) {
    .gd6c-container {
        max-width: 430px;
    }
}
