/**
 * Arioplay Com - Main Stylesheet
 * Prefix: w94cd- (all classes)
 * Color Palette: #2E8B57 (primary) | #F8F9FA (light) | #2C2C2C (dark)
 */

/* CSS Variables with prefix */
:root {
    --w94cd-primary: #2E8B57;
    --w94cd-primary-dark: #236B43;
    --w94cd-primary-light: #3DA76F;
    --w94cd-light: #F8F9FA;
    --w94cd-dark: #2C2C2C;
    --w94cd-gray: #6C757D;
    --w94cd-gray-light: #E9ECEF;
    --w94cd-accent: #FFD700;
    --w94cd-success: #28A745;
    --w94cd-gradient: linear-gradient(135deg, #2E8B57 0%, #236B43 100%);
}

/* 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(--w94cd-dark);
    color: var(--w94cd-light);
    line-height: 1.6;
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container with prefix */
.w94cd-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header with prefix */
.w94cd-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--w94cd-gradient);
    padding: 1rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.w94cd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.w94cd-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.w94cd-logo img {
    width: 32px;
    height: 32px;
}

.w94cd-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--w94cd-light);
}

.w94cd-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.w94cd-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.w94cd-btn-primary {
    background: var(--w94cd-accent);
    color: var(--w94cd-dark);
}

.w94cd-btn-primary:hover {
    background: #FFC107;
    transform: scale(1.05);
}

.w94cd-btn-outline {
    background: transparent;
    border: 2px solid var(--w94cd-light);
    color: var(--w94cd-light);
}

.w94cd-btn-outline:hover {
    background: var(--w94cd-light);
    color: var(--w94cd-primary);
}

/* Menu toggle */
.w94cd-menu-toggle {
    background: none;
    border: none;
    color: var(--w94cd-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile menu */
.w94cd-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--w94cd-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.w94cd-mobile-menu.prodf0-active {
    right: 0;
}

.w94cd-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--w94cd-gray);
}

.w94cd-mobile-menu-close {
    background: none;
    border: none;
    color: var(--w94cd-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.w94cd-mobile-menu-nav {
    list-style: none;
}

.w94cd-mobile-menu-nav li {
    margin-bottom: 1.5rem;
}

.w94cd-mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--w94cd-light);
    font-size: 1.6rem;
    padding: 1rem;
    border-radius: 0.8rem;
    transition: background 0.3s ease;
}

.w94cd-mobile-menu-nav a:hover {
    background: var(--w94cd-primary);
}

.w94cd-mobile-menu-nav i {
    width: 24px;
    text-align: center;
}

/* Overlay */
.w94cd-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;
}

.w94cd-overlay.prodf0-active {
    opacity: 1;
    visibility: visible;
}

/* Main content */
.w94cd-main {
    padding-top: 7rem;
    padding-bottom: 8rem;
}

/* Hero slider */
.w94cd-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
}

.w94cd-slides {
    position: relative;
    height: 200px;
}

.w94cd-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.w94cd-slide.prodf0-active {
    opacity: 1;
}

.w94cd-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.2rem;
}

/* Section titles */
.w94cd-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--w94cd-light);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--w94cd-primary);
}

/* Game grid */
.w94cd-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.w94cd-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.w94cd-game-item:hover {
    transform: translateY(-5px);
}

.w94cd-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.w94cd-game-item:hover .w94cd-game-img {
    border-color: var(--w94cd-primary);
}

.w94cd-game-name {
    font-size: 1.1rem;
    color: var(--w94cd-light);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Content sections */
.w94cd-content-section {
    background: rgba(46, 139, 87, 0.1);
    border-radius: 1.2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(46, 139, 87, 0.3);
}

.w94cd-content-section h2 {
    font-size: 2rem;
    color: var(--w94cd-primary-light);
    margin-bottom: 1.5rem;
}

.w94cd-content-section p {
    font-size: 1.5rem;
    color: var(--w94cd-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.w94cd-content-section ul {
    list-style: none;
    padding-left: 0;
}

.w94cd-content-section li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.5rem;
}

.w94cd-content-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--w94cd-primary);
}

/* Promo link text */
.w94cd-promo-link {
    color: var(--w94cd-accent);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.w94cd-promo-link:hover {
    color: #FFC107;
    text-decoration: underline;
}

/* Footer */
.w94cd-footer {
    background: var(--w94cd-dark);
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--w94cd-gray);
}

.w94cd-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.w94cd-footer-link {
    color: var(--w94cd-gray-light);
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.w94cd-footer-link:hover {
    color: var(--w94cd-primary);
}

.w94cd-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.w94cd-partner-img {
    width: 50px;
    height: 30px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.w94cd-partner-img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.w94cd-copyright {
    text-align: center;
    color: var(--w94cd-gray);
    font-size: 1.3rem;
}

/* Bottom navigation - fixed mobile nav */
.w94cd-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--w94cd-gradient);
    height: 64px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.w94cd-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(--w94cd-light);
    opacity: 0.8;
}

.w94cd-nav-item:hover,
.w94cd-nav-item.w94cd-active {
    opacity: 1;
    transform: scale(1.1);
}

.w94cd-nav-item i,
.w94cd-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 4px;
}

.w94cd-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .w94cd-bottom-nav {
        display: none;
    }

    .w94cd-main {
        padding-bottom: 2rem;
    }
}

/* Mobile padding for bottom nav */
@media (max-width: 768px) {
    .w94cd-main {
        padding-bottom: 80px;
    }
}

/* Category label */
.w94cd-category-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--w94cd-primary-light);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.w94cd-category-label i {
    font-size: 2rem;
}

/* Promo buttons */
.w94cd-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--w94cd-accent);
    color: var(--w94cd-dark);
    padding: 1.2rem 2.4rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 1rem 0;
}

.w94cd-promo-btn:hover {
    background: #FFC107;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Stats grid */
.w94cd-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.w94cd-stat-item {
    background: rgba(46, 139, 87, 0.2);
    padding: 1.2rem;
    border-radius: 0.8rem;
    text-align: center;
}

.w94cd-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--w94cd-accent);
}

.w94cd-stat-label {
    font-size: 1.2rem;
    color: var(--w94cd-gray-light);
    margin-top: 0.3rem;
}

/* FAQ accordion */
.w94cd-faq-item {
    background: rgba(46, 139, 87, 0.1);
    border-radius: 0.8rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.w94cd-faq-question {
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--w94cd-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w94cd-faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.4rem;
    color: var(--w94cd-gray-light);
    line-height: 1.6;
}

/* Feature list */
.w94cd-feature-list {
    display: grid;
    gap: 1.2rem;
}

.w94cd-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(46, 139, 87, 0.1);
    border-radius: 0.8rem;
}

.w94cd-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--w94cd-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.w94cd-feature-icon i {
    font-size: 2rem;
    color: var(--w94cd-light);
}

.w94cd-feature-content h4 {
    font-size: 1.5rem;
    color: var(--w94cd-light);
    margin-bottom: 0.5rem;
}

.w94cd-feature-content p {
    font-size: 1.3rem;
    color: var(--w94cd-gray-light);
    margin: 0;
}

/* Internal links */
.w94cd-internal-link {
    color: var(--w94cd-primary-light);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.w94cd-internal-link:hover {
    color: var(--w94cd-accent);
}
