/**
 * tara777 CSS Stylesheet
 * Mobile-first responsive design for gaming website
 * Prefix: ge3f-
 * Colors: #FF5722 | #F5F5F5 | #00695C | #26A69A | #212F3D | #8B008B
 */

/* CSS Variables */
:root {
    --ge3f-primary: #FF5722;
    --ge3f-secondary: #00695C;
    --ge3f-accent: #26A69A;
    --ge3f-bg-dark: #212F3D;
    --ge3f-bg-light: #F5F5F5;
    --ge3f-purple: #8B008B;
    --ge3f-text-light: #FFFFFF;
    --ge3f-text-dark: #212F3D;
    --ge3f-gradient: linear-gradient(135deg, #FF5722 0%, #8B008B 100%);
    --ge3f-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --ge3f-radius: 8px;
}

/* 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(--ge3f-bg-dark);
    color: var(--ge3f-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
}

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

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

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

.ge3f-wrapper {
    padding: 1rem;
}

/* Header */
.ge3f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--ge3f-bg-dark) 0%, rgba(33, 47, 61, 0.95) 100%);
    border-bottom: 2px solid var(--ge3f-primary);
    padding: 0.8rem 1rem;
}

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

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

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

.ge3f-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--ge3f-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ge3f-header-buttons {
    display: flex;
    gap: 0.6rem;
}

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

.ge3f-btn-primary {
    background: var(--ge3f-gradient);
    color: var(--ge3f-text-light);
}

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

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

.ge3f-btn-outline:hover {
    background: var(--ge3f-primary);
    color: var(--ge3f-text-light);
}

/* Menu Toggle */
.ge3f-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ge3f-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Desktop Navigation */
.ge3f-desktop-nav {
    display: none;
}

/* Mobile Menu */
.ge3f-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--ge3f-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    border-left: 2px solid var(--ge3f-primary);
}

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

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

.ge3f-close-menu {
    background: none;
    border: none;
    color: var(--ge3f-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.ge3f-mobile-nav-links {
    list-style: none;
}

.ge3f-mobile-nav-links li {
    margin-bottom: 1rem;
}

.ge3f-mobile-nav-links a {
    display: block;
    padding: 1rem;
    color: var(--ge3f-text-light);
    font-size: 1.4rem;
    border-radius: var(--ge3f-radius);
    transition: all 0.3s ease;
}

.ge3f-mobile-nav-links a:hover {
    background: rgba(255, 87, 34, 0.2);
    color: var(--ge3f-primary);
}

/* Menu Overlay */
.ge3f-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.ge3f-overlay-active {
    display: block;
}

/* Main Content */
main {
    padding-top: 70px;
    padding-bottom: 1rem;
}

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

/* Carousel/Slider */
.ge3f-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--ge3f-radius);
    margin-bottom: 1.5rem;
}

.ge3f-slides {
    position: relative;
    height: 180px;
}

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

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

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

.ge3f-slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.ge3f-dot-active {
    background: var(--ge3f-primary);
    transform: scale(1.2);
}

/* Section Titles */
.ge3f-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid var(--ge3f-primary);
    color: var(--ge3f-text-light);
}

.ge3f-section-subtitle {
    font-size: 1.4rem;
    color: var(--ge3f-accent);
    margin-bottom: 1.5rem;
}

/* Game Grid */
.ge3f-game-section {
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.ge3f-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.ge3f-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--ge3f-radius);
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.ge3f-game-card:hover {
    transform: translateY(-3px);
    border-color: var(--ge3f-primary);
    box-shadow: var(--ge3f-shadow);
}

.ge3f-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.4rem;
}

.ge3f-game-card span {
    font-size: 1rem;
    color: var(--ge3f-text-light);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Tabs */
.ge3f-category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.ge3f-category-tabs::-webkit-scrollbar {
    display: none;
}

.ge3f-tab {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 1.2rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--ge3f-text-light);
}

.ge3f-tab-active {
    background: var(--ge3f-gradient);
}

/* Info Sections */
.ge3f-info-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--ge3f-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.ge3f-info-section h2 {
    font-size: 1.6rem;
    color: var(--ge3f-primary);
    margin-bottom: 1rem;
}

.ge3f-info-section p {
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.ge3f-info-section ul {
    list-style: none;
    padding-left: 1rem;
}

.ge3f-info-section li {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.ge3f-info-section li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--ge3f-primary);
}

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

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

/* Footer */
.ge3f-footer {
    background: rgba(33, 47, 61, 0.95);
    padding: 2rem 1rem 1rem;
    margin-top: 2rem;
    border-top: 2px solid var(--ge3f-primary);
}

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

.ge3f-footer-links a {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.ge3f-footer-links a:hover {
    color: var(--ge3f-primary);
}

.ge3f-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ge3f-partners img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ge3f-partners img:hover {
    opacity: 1;
}

.ge3f-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Bottom Navigation */
.ge3f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(33, 47, 61, 0.98) 0%, var(--ge3f-bg-dark) 100%);
    border-top: 2px solid var(--ge3f-primary);
    display: none;
    height: 64px;
}

.ge3f-bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.ge3f-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: rgba(255, 255, 255, 0.7);
}

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

.ge3f-nav-item-active {
    color: var(--ge3f-primary);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .ge3f-menu-toggle {
        display: block;
    }

    .ge3f-bottom-nav {
        display: block;
    }

    .ge3f-header-buttons .ge3f-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1.1rem;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .ge3f-container {
        max-width: 800px;
    }

    .ge3f-header-content {
        max-width: 800px;
    }

    .ge3f-desktop-nav {
        display: flex;
        gap: 1.5rem;
    }

    .ge3f-desktop-nav a {
        color: var(--ge3f-text-light);
        font-size: 1.3rem;
        transition: color 0.3s ease;
    }

    .ge3f-desktop-nav a:hover {
        color: var(--ge3f-primary);
    }

    .ge3f-menu-toggle {
        display: none;
    }

    .ge3f-bottom-nav {
        display: none;
    }

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

    .ge3f-slides {
        height: 300px;
    }
}

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

.ge3f-text-primary {
    color: var(--ge3f-primary);
}

.ge3f-mb-1 {
    margin-bottom: 1rem;
}

.ge3f-mb-2 {
    margin-bottom: 2rem;
}

.ge3f-hidden {
    display: none;
}

/* H1 Title */
.ge3f-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--ge3f-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features List */
.ge3f-features {
    display: grid;
    gap: 1rem;
}

.ge3f-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--ge3f-radius);
}

.ge3f-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ge3f-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.ge3f-feature-icon i {
    font-size: 20px;
    color: var(--ge3f-text-light);
}

.ge3f-feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--ge3f-primary);
}

.ge3f-feature-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* RTP Badge */
.ge3f-rtp-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--ge3f-secondary);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ge3f-text-light);
}

/* FAQ Section */
.ge3f-faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: var(--ge3f-radius);
    overflow: hidden;
}

.ge3f-faq-question {
    padding: 1rem;
    background: rgba(255, 87, 34, 0.1);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ge3f-faq-answer {
    padding: 1rem;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.ge3f-cta-button {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--ge3f-gradient);
    border: none;
    border-radius: var(--ge3f-radius);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ge3f-text-light);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
}

.ge3f-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}
