/**
 * slo878.click - Main Stylesheet
 * CSS Class Prefix: g43f-
 * Color Palette: #FF69B4 | #141414 | #95A5A6 | #FFB3BA | #F08080
 * Version: 1.0.0
 */

/* CSS Variables */
:root {
    --g43f-primary: #FF69B4;
    --g43f-bg: #141414;
    --g43f-text: #95A5A6;
    --g43f-accent: #FFB3BA;
    --g43f-highlight: #F08080;
    --g43f-white: #ffffff;
    --g43f-dark: #0a0a0a;
    --g43f-gradient: linear-gradient(135deg, #FF69B4, #F08080);
}

/* Reset and Base */
* {
    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(--g43f-bg);
    color: var(--g43f-text);
    line-height: 1.5rem;
    font-size: 1.4rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.g43f-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.g43f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--g43f-dark);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.g43f-header-scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.g43f-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g43f-logo img {
    width: 28px;
    height: 28px;
}

.g43f-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g43f-primary);
}

.g43f-header-actions {
    display: flex;
    gap: 0.8rem;
}

.g43f-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.g43f-btn-primary {
    background: var(--g43f-gradient);
    color: var(--g43f-white);
}

.g43f-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.g43f-btn-outline {
    background: transparent;
    border: 1px solid var(--g43f-primary);
    color: var(--g43f-primary);
}

.g43f-btn-outline:hover {
    background: var(--g43f-primary);
    color: var(--g43f-white);
}

.g43f-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--g43f-primary);
    font-size: 2.4rem;
    cursor: pointer;
}

/* Mobile Menu */
.g43f-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--g43f-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
}

.g43f-menu-open {
    right: 0;
}

.g43f-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;
}

.g43f-overlay-active {
    opacity: 1;
    visibility: visible;
}

.g43f-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--g43f-primary);
    font-size: 2.4rem;
    cursor: pointer;
}

.g43f-menu-list {
    list-style: none;
}

.g43f-menu-item {
    margin-bottom: 1.5rem;
}

.g43f-menu-link {
    display: block;
    padding: 1rem;
    color: var(--g43f-text);
    font-size: 1.4rem;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.g43f-menu-link:hover {
    background: rgba(255, 105, 180, 0.1);
    color: var(--g43f-primary);
}

/* Main Content */
main {
    padding-top: 6rem;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 8rem;
    }
}

/* Carousel */
.g43f-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 1rem 0;
}

.g43f-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.g43f-slide {
    min-width: 100%;
    position: relative;
}

.g43f-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
}

.g43f-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 105, 180, 0.8);
    color: var(--g43f-white);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
}

.g43f-carousel-prev {
    left: 1rem;
}

.g43f-carousel-next {
    right: 1rem;
}

.g43f-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.g43f-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
}

.g43f-dot-active {
    background: var(--g43f-primary);
}

/* Section Titles */
.g43f-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--g43f-white);
    margin: 2rem 0 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--g43f-primary);
}

/* Game Grid */
.g43f-game-section {
    padding: 1rem 0;
}

.g43f-game-category {
    margin-bottom: 2rem;
}

.g43f-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--g43f-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.g43f-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.g43f-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.g43f-game-item:hover {
    transform: scale(1.05);
}

.g43f-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 1rem;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.g43f-game-name {
    font-size: 1rem;
    color: var(--g43f-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Content Sections */
.g43f-content-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
}

.g43f-content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--g43f-primary);
    margin-bottom: 1rem;
}

.g43f-content-text {
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--g43f-text);
}

.g43f-content-text p {
    margin-bottom: 1rem;
}

.g43f-content-text strong {
    color: var(--g43f-primary);
}

/* Promo Links */
.g43f-promo-link {
    color: var(--g43f-primary);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.g43f-promo-link:hover {
    color: var(--g43f-highlight);
}

.g43f-promo-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--g43f-gradient);
    color: var(--g43f-white);
    border-radius: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.g43f-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Feature List */
.g43f-feature-list {
    list-style: none;
}

.g43f-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.g43f-feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--g43f-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g43f-white);
    flex-shrink: 0;
}

.g43f-feature-text h4 {
    font-size: 1.4rem;
    color: var(--g43f-white);
    margin-bottom: 0.3rem;
}

.g43f-feature-text p {
    font-size: 1.2rem;
    color: var(--g43f-text);
}

/* FAQ Section */
.g43f-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.g43f-faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--g43f-primary);
    margin-bottom: 0.5rem;
}

.g43f-faq-answer {
    font-size: 1.3rem;
    color: var(--g43f-text);
    line-height: 1.8;
}

/* Footer */
.g43f-footer {
    background: var(--g43f-dark);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.g43f-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.g43f-footer-link {
    font-size: 1.2rem;
    color: var(--g43f-text);
    transition: color 0.3s ease;
}

.g43f-footer-link:hover {
    color: var(--g43f-primary);
}

.g43f-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.g43f-partner-logo {
    width: 4rem;
    height: 2rem;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.g43f-partner-logo:hover {
    opacity: 1;
}

.g43f-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--g43f-text);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bottom Navigation */
.g43f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--g43f-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.g43f-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    color: var(--g43f-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.g43f-nav-item:hover,
.g43f-nav-item-active {
    color: var(--g43f-primary);
}

.g43f-nav-item i,
.g43f-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.g43f-nav-item span {
    font-size: 10px;
}

/* Desktop Hidden */
@media (min-width: 769px) {
    .g43f-bottom-nav {
        display: none;
    }

    .g43f-menu-toggle {
        display: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .g43f-header {
        padding: 0.8rem 1rem;
    }

    .g43f-btn {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }

    .g43f-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }

    .g43f-section-title {
        font-size: 1.6rem;
    }
}

/* Utility Classes */
.g43f-text-center {
    text-align: center;
}

.g43f-mt-2 {
    margin-top: 2rem;
}

.g43f-mb-2 {
    margin-bottom: 2rem;
}

.g43f-hidden {
    display: none;
}
