/**
 * starph11 - Main Stylesheet
 * Website: starph11.click
 * Prefix: wd74f-
 * Colors: #F5DEB3 | #E9967A | #FF4500 | #141414 | #BBBBBB
 */

/* CSS Variables */
:root {
    --wd74f-primary: #FF4500;
    --wd74f-secondary: #E9967A;
    --wd74f-accent: #F5DEB3;
    --wd74f-bg-dark: #141414;
    --wd74f-bg-light: #1a1a1a;
    --wd74f-text-light: #F5DEB3;
    --wd74f-text-muted: #BBBBBB;
    --wd74f-border: #2a2a2a;
    --wd74f-gradient: linear-gradient(135deg, #FF4500 0%, #E9967A 100%);
}

/* Reset & 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(--wd74f-bg-dark);
    color: var(--wd74f-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.wd74f-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wd74f-wrapper {
    padding: 2rem 0;
}

/* Header */
.wd74f-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--wd74f-bg-dark);
    border-bottom: 1px solid var(--wd74f-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.wd74f-header-scrolled {
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.wd74f-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 430px;
    margin: 0 auto;
}

.wd74f-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wd74f-logo img {
    width: 32px;
    height: 32px;
}

.wd74f-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--wd74f-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wd74f-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wd74f-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 2.4rem;
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.wd74f-btn-primary {
    background: var(--wd74f-gradient);
    color: #fff;
}

.wd74f-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.wd74f-btn-outline {
    background: transparent;
    border: 2px solid var(--wd74f-primary);
    color: var(--wd74f-primary);
}

.wd74f-btn-outline:hover {
    background: var(--wd74f-primary);
    color: #fff;
}

.wd74f-menu-btn {
    background: none;
    border: none;
    color: var(--wd74f-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.wd74f-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--wd74f-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.gamed70b-menu-active {
    right: 0 !important;
}

.wd74f-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--wd74f-border);
}

.wd74f-close-btn {
    background: none;
    border: none;
    color: var(--wd74f-text-muted);
    font-size: 2.4rem;
    cursor: pointer;
}

.wd74f-nav-list {
    list-style: none;
}

.wd74f-nav-item {
    margin-bottom: 0.5rem;
}

.wd74f-nav-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--wd74f-text-light);
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.wd74f-nav-link:hover {
    background: var(--wd74f-bg-dark);
    color: var(--wd74f-primary);
}

/* Menu Overlay */
.wd74f-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;
}

.gamed70b-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.wd74f-main {
    padding-top: 7rem;
}

@media (max-width: 768px) {
    .wd74f-main {
        padding-bottom: 8rem;
    }
}

/* Slider/Carousel */
.wd74f-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    margin: 1.5rem 0;
}

.wd74f-slide {
    display: none;
    cursor: pointer;
}

.wd74f-slide img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

.wd74f-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.gamed70b-slide-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gamed70b-dot-active {
    background: var(--wd74f-primary);
    transform: scale(1.2);
}

/* Section Titles */
.wd74f-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--wd74f-text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wd74f-section-title i {
    color: var(--wd74f-primary);
}

/* Game Grid */
.wd74f-game-section {
    padding: 2rem 0;
}

.wd74f-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.wd74f-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.wd74f-game-item:hover {
    transform: translateY(-5px);
}

.wd74f-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid var(--wd74f-border);
    transition: border-color 0.3s ease;
}

.wd74f-game-item:hover .wd74f-game-img {
    border-color: var(--wd74f-primary);
}

.wd74f-game-name {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: var(--wd74f-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Cards & Sections */
.wd74f-card {
    background: var(--wd74f-bg-light);
    border-radius: 1.2rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--wd74f-border);
}

.wd74f-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--wd74f-primary);
}

.wd74f-card-text {
    color: var(--wd74f-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.wd74f-text-link {
    color: var(--wd74f-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.wd74f-text-link:hover {
    color: var(--wd74f-secondary);
    text-decoration: underline;
}

/* Features List */
.wd74f-features {
    display: grid;
    gap: 1.5rem;
}

.wd74f-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.wd74f-feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--wd74f-gradient);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.wd74f-feature-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--wd74f-text-light);
}

.wd74f-feature-content p {
    font-size: 1.3rem;
    color: var(--wd74f-text-muted);
}

/* FAQ Accordion */
.wd74f-faq-item {
    background: var(--wd74f-bg-light);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--wd74f-border);
}

.wd74f-faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--wd74f-text-light);
}

.wd74f-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--wd74f-text-muted);
    line-height: 1.6;
}

/* Promotional CTA */
.wd74f-cta {
    background: var(--wd74f-gradient);
    border-radius: 1.2rem;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}

.wd74f-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.wd74f-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.wd74f-cta .wd74f-btn {
    background: #fff;
    color: var(--wd74f-primary);
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
}

.wd74f-cta .wd74f-btn:hover {
    background: var(--wd74f-accent);
}

/* Footer */
.wd74f-footer {
    background: var(--wd74f-bg-light);
    border-top: 1px solid var(--wd74f-border);
    padding: 2rem 0;
    margin-top: 2rem;
}

.wd74f-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wd74f-footer-link {
    color: var(--wd74f-text-muted);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.wd74f-footer-link:hover {
    color: var(--wd74f-primary);
}

.wd74f-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.wd74f-partner-img {
    height: 2.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.wd74f-partner-img:hover {
    opacity: 1;
}

.wd74f-copyright {
    text-align: center;
    color: var(--wd74f-text-muted);
    font-size: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wd74f-border);
}

/* Bottom Navigation (Mobile) */
.wd74f-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--wd74f-bg-dark);
    border-top: 1px solid var(--wd74f-border);
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .wd74f-bottom-nav {
        display: block;
    }
}

.wd74f-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.wd74f-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem;
    min-width: 60px;
    min-height: 60px;
    background: none;
    border: none;
    color: var(--wd74f-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1rem;
}

.wd74f-nav-btn:hover,
.wd74f-nav-btn.active {
    color: var(--wd74f-primary);
    background: rgba(255, 69, 0, 0.1);
}

.wd74f-nav-btn i {
    font-size: 2.4rem;
}

.wd74f-nav-btn span {
    font-size: 1rem;
    font-weight: 500;
}

/* Utility Classes */
.wd74f-text-center {
    text-align: center;
}

.wd74f-mt-2 {
    margin-top: 2rem;
}

.wd74f-mb-2 {
    margin-bottom: 2rem;
}

.wd74f-hidden-mobile {
    display: none;
}

@media (min-width: 769px) {
    .wd74f-hidden-mobile {
        display: block;
    }

    .wd74f-bottom-nav {
        display: none !important;
    }
}

/* Promo Link Styles */
.wd74f-promo-link {
    color: var(--wd74f-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wd74f-promo-link:hover {
    color: var(--wd74f-secondary);
    text-decoration: underline;
}

/* Responsive Grid */
@media (max-width: 380px) {
    .wd74f-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
