/**
 * okplay apk - Main Stylesheet
 * Website: okplayapk.click
 * Prefix: gf83-
 */

/* CSS Variables */
:root {
    --gf83-primary: #48D1CC;
    --gf83-secondary: #8B008B;
    --gf83-accent: #87CEEB;
    --gf83-bg-dark: #3A3A3A;
    --gf83-bg-light: #EEEEEE;
    --gf83-text-light: #EEEEEE;
    --gf83-text-dark: #3A3A3A;
    --gf83-border: #D3D3D3;
    --gf83-gradient: linear-gradient(135deg, #48D1CC 0%, #8B008B 100%);
    --gf83-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gf83-bg-dark);
    color: var(--gf83-text-light);
    line-height: 1.5rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.gf83-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.gf83-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.98) 0%, rgba(58, 58, 58, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.gf83-header-scrolled {
    box-shadow: var(--gf83-shadow);
}

.gf83-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.gf83-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gf83-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.gf83-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gf83-primary);
}

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

.gf83-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
}

.gf83-btn-primary {
    background: var(--gf83-gradient);
    color: #fff;
}

.gf83-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(72, 209, 204, 0.4);
}

.gf83-btn-secondary {
    background: transparent;
    color: var(--gf83-primary);
    border: 2px solid var(--gf83-primary);
}

.gf83-btn-secondary:hover {
    background: var(--gf83-primary);
    color: var(--gf83-bg-dark);
}

.gf83-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--gf83-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

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

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

.gf83-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;
}

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

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

.gf83-menu-close {
    font-size: 2.4rem;
    color: var(--gf83-text-light);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.gf83-menu-nav a {
    display: block;
    padding: 1.2rem 1rem;
    font-size: 1.4rem;
    color: var(--gf83-text-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gf83-menu-nav a:hover {
    background: rgba(72, 209, 204, 0.2);
    color: var(--gf83-primary);
}

/* Carousel */
.gf83-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 60px;
}

.gf83-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.gf83-slide-active {
    opacity: 1;
}

.gf83-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gf83-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.gf83-dot-active {
    background: var(--gf83-primary);
}

/* Main Content */
main {
    padding-bottom: 80px;
}

.gf83-section {
    padding: 2rem 1.5rem;
}

.gf83-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gf83-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.gf83-section-subtitle {
    font-size: 1.4rem;
    color: var(--gf83-accent);
    text-align: center;
    margin-bottom: 2rem;
}

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

.gf83-game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gf83-game-card:hover {
    transform: translateY(-3px);
    background: rgba(72, 209, 204, 0.15);
}

.gf83-game-card img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.gf83-game-card span {
    font-size: 1rem;
    color: var(--gf83-text-light);
    text-align: center;
    line-height: 1.2;
}

/* Category Section */
.gf83-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.gf83-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gf83-primary);
}

.gf83-category-more {
    font-size: 1.2rem;
    color: var(--gf83-accent);
}

/* Cards */
.gf83-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.gf83-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gf83-primary);
    margin-bottom: 1rem;
}

.gf83-card-text {
    font-size: 1.3rem;
    color: var(--gf83-text-light);
    line-height: 1.6;
}

/* Features Grid */
.gf83-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gf83-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.gf83-feature-icon {
    font-size: 2.4rem;
    color: var(--gf83-primary);
}

.gf83-feature-text {
    font-size: 1.2rem;
    color: var(--gf83-text-light);
}

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

.gf83-promo-link:hover {
    color: var(--gf83-accent);
}

/* Footer */
.gf83-footer {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 2rem 1.5rem;
    padding-bottom: 100px;
}

.gf83-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.gf83-footer-brand p {
    font-size: 1.2rem;
    color: #999;
    margin-top: 1rem;
    line-height: 1.6;
}

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

.gf83-footer-link {
    padding: 0.8rem 1.2rem;
    background: rgba(72, 209, 204, 0.2);
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--gf83-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gf83-footer-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.gf83-footer-sitemap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.gf83-footer-sitemap a {
    font-size: 1.2rem;
    color: #888;
    transition: color 0.3s ease;
}

.gf83-footer-sitemap a:hover {
    color: var(--gf83-primary);
}

/* Bottom Navigation */
.gf83-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.98) 0%, rgba(40, 40, 40, 0.98) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(72, 209, 204, 0.3);
}

.gf83-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;
    color: #888;
}

.gf83-nav-item:hover,
.gf83-nav-item.gf83-active {
    color: var(--gf83-primary);
    transform: scale(1.1);
}

.gf83-nav-item i,
.gf83-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.gf83-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* RTP Table */
.gf83-rtp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2rem;
}

.gf83-rtp-table th,
.gf83-rtp-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gf83-rtp-table th {
    color: var(--gf83-primary);
    font-weight: 600;
}

.gf83-rtp-table td {
    color: var(--gf83-text-light);
}

/* Testimonials */
.gf83-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.gf83-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gf83-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gf83-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
}

.gf83-testimonial-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gf83-primary);
}

.gf83-testimonial-text {
    font-size: 1.2rem;
    color: var(--gf83-text-light);
    line-height: 1.5;
}

/* Payment Methods */
.gf83-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gf83-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.gf83-payment-item i {
    font-size: 2.4rem;
    color: var(--gf83-primary);
    margin-bottom: 0.5rem;
}

.gf83-payment-item span {
    font-size: 1.1rem;
    color: var(--gf83-text-light);
}

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

.gf83-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.gf83-winner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gf83-winner-game {
    font-size: 1.2rem;
    color: var(--gf83-text-light);
}

.gf83-winner-amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gf83-primary);
}

/* CTA Section */
.gf83-cta {
    background: var(--gf83-gradient);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 1.5rem;
}

.gf83-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.gf83-cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.gf83-cta .gf83-btn {
    background: #fff;
    color: var(--gf83-secondary);
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
}

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

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

    main {
        padding-bottom: 0;
    }

    .gf83-container {
        max-width: 768px;
    }

    .gf83-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .gf83-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gf83-payment-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Utility Classes */
.gf83-text-center { text-align: center; }
.gf83-text-primary { color: var(--gf83-primary); }
.gf83-text-accent { color: var(--gf83-accent); }
.gf83-mb-1 { margin-bottom: 1rem; }
.gf83-mb-2 { margin-bottom: 2rem; }
.gf83-mt-1 { margin-top: 1rem; }
.gf83-mt-2 { margin-top: 2rem; }
.gf83-hidden { display: none; }
