/**
 * aron play - Main Stylesheet
 * Website: aronplay.click
 * Prefix: w35c0-
 * Colors: #3A3A3A (dark bg) | #4A4A4A (secondary) | #FFFFFF (text) | #D3D3D3 | #BDC3C7 | #FFDFBA (accent)
 */

/* CSS Variables */
:root {
    --w35c0-primary: #FFDFBA;
    --w35c0-secondary: #4A4A4A;
    --w35c0-bg-dark: #3A3A3A;
    --w35c0-bg-light: #FFFFFF;
    --w35c0-text-light: #FFFFFF;
    --w35c0-text-dark: #3A3A3A;
    --w35c0-border: #D3D3D3;
    --w35c0-accent: #BDC3C7;
    --w35c0-gradient: linear-gradient(135deg, #FFDFBA 0%, #D3D3D3 100%);
    --w35c0-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 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;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--w35c0-bg-dark);
    color: var(--w35c0-text-light);
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.w35c0-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: linear-gradient(180deg, #3A3A3A 0%, #4A4A4A 100%);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--w35c0-shadow);
}

.w35c0-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.w35c0-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.w35c0-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--w35c0-primary);
    letter-spacing: 0.5px;
}

.w35c0-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.w35c0-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.w35c0-btn-login {
    background: transparent;
    border: 2px solid var(--w35c0-primary);
    color: var(--w35c0-primary);
}

.w35c0-btn-login:hover {
    background: var(--w35c0-primary);
    color: var(--w35c0-bg-dark);
}

.w35c0-btn-register {
    background: var(--w35c0-gradient);
    color: var(--w35c0-bg-dark);
}

.w35c0-btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 223, 186, 0.5);
}

.w35c0-menu-toggle {
    background: none;
    border: none;
    color: var(--w35c0-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.w35c0-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--w35c0-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.w35c0-menu-active {
    right: 0;
}

.w35c0-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;
}

.w35c0-overlay-active {
    opacity: 1;
    visibility: visible;
}

.w35c0-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--w35c0-secondary);
}

.w35c0-menu-close {
    background: none;
    border: none;
    color: var(--w35c0-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.w35c0-menu-nav {
    list-style: none;
}

.w35c0-menu-nav li {
    margin-bottom: 1.5rem;
}

.w35c0-menu-nav a {
    color: var(--w35c0-text-light);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.w35c0-menu-nav a:hover {
    background: var(--w35c0-secondary);
}

/* Main Content */
.w35c0-main {
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Carousel/Slider */
.w35c0-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.w35c0-slides {
    position: relative;
}

.w35c0-slide {
    display: none;
    cursor: pointer;
}

.w35c0-slide:first-child {
    display: block;
}

.w35c0-slide img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.w35c0-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.w35c0-slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.w35c0-dot-active {
    background: var(--w35c0-primary);
}

/* Section Styles */
.w35c0-section {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
}

.w35c0-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--w35c0-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Game Grid */
.w35c0-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.w35c0-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.w35c0-game-item:hover {
    transform: scale(1.05);
}

.w35c0-game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.w35c0-game-name {
    font-size: 1.2rem;
    color: var(--w35c0-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category Section */
.w35c0-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--w35c0-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--w35c0-secondary);
}

/* Content Cards */
.w35c0-card {
    background: var(--w35c0-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.w35c0-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--w35c0-primary);
    margin-bottom: 1rem;
}

.w35c0-card-content {
    color: var(--w35c0-text-light);
    line-height: 1.6;
}

/* Promo Links */
.w35c0-promo-link {
    color: var(--w35c0-primary);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.w35c0-promo-link:hover {
    color: #FFE4C9;
    text-decoration: underline;
}

.w35c0-promo-btn {
    display: inline-block;
    background: var(--w35c0-gradient);
    color: var(--w35c0-bg-dark);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.w35c0-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 223, 186, 0.6);
}

/* Footer */
.w35c0-footer {
    background: #2A2A2A;
    padding: 2rem 1.5rem;
    padding-bottom: 8rem;
}

.w35c0-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.w35c0-footer-link {
    color: var(--w35c0-accent);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.w35c0-footer-link:hover {
    color: var(--w35c0-primary);
}

.w35c0-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.w35c0-partner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.w35c0-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.w35c0-copyright {
    text-align: center;
    color: var(--w35c0-accent);
    font-size: 1.2rem;
}

/* Bottom Navigation */
.w35c0-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    background: linear-gradient(180deg, #4A4A4A 0%, #3A3A3A 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.w35c0-bottom-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: var(--w35c0-text-light);
}

.w35c0-bottom-nav-item:hover {
    color: var(--w35c0-primary);
    transform: scale(1.1);
}

.w35c0-nav-active {
    color: var(--w35c0-primary);
}

.w35c0-bottom-nav-item i,
.w35c0-bottom-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 4px;
}

.w35c0-bottom-nav-item span {
    font-size: 1rem;
}

/* Utility Classes */
.w35c0-text-center {
    text-align: center;
}

.w35c0-mb-1 {
    margin-bottom: 1rem;
}

.w35c0-mb-2 {
    margin-bottom: 2rem;
}

.w35c0-mt-2 {
    margin-top: 2rem;
}

/* Responsive Adjustments */
@media (min-width: 769px) {
    .w35c0-bottom-nav {
        display: none;
    }

    .w35c0-footer {
        padding-bottom: 2rem;
    }

    .w35c0-main {
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .w35c0-main {
        padding-bottom: 80px;
    }
}

/* FAQ & Features Page Styles */
.w35c0-faq-item {
    background: var(--w35c0-secondary);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.w35c0-faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--w35c0-primary);
    cursor: pointer;
}

.w35c0-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--w35c0-text-light);
    line-height: 1.6;
}

.w35c0-feature-list {
    list-style: none;
}

.w35c0-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--w35c0-secondary);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.w35c0-feature-icon {
    font-size: 2.4rem;
    color: var(--w35c0-primary);
    flex-shrink: 0;
}

.w35c0-feature-content h4 {
    color: var(--w35c0-primary);
    margin-bottom: 0.5rem;
}

.w35c0-feature-content p {
    color: var(--w35c0-text-light);
    font-size: 1.4rem;
}

/* H1 Title Style */
.w35c0-h1-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--w35c0-primary);
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
    line-height: 1.3;
}
