/**
 * aron play - Core Stylesheet
 * Website: aron-play.click
 * Prefix: v362-
 * Color Palette: #95A5A6 | #D3D3D3 | #262626 | #808080 | #F0F8FF | #87CEFA
 */

/* CSS Variables */
:root {
    --v362-primary: #87CEFA;
    --v362-secondary: #95A5A6;
    --v362-bg-dark: #262626;
    --v362-bg-light: #F0F8FF;
    --v362-text-light: #D3D3D3;
    --v362-text-muted: #808080;
    --v362-accent: #87CEFA;
    --v362-gradient: linear-gradient(135deg, #262626 0%, #1a1a2e 100%);
    --v362-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --v362-radius: 8px;
    --v362-transition: all 0.3s ease;
}

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    background: var(--v362-bg-dark);
    color: var(--v362-text-light);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--v362-primary);
    text-decoration: none;
    transition: var(--v362-transition);
}

a:hover {
    color: var(--v362-accent);
}

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

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

.v362-wrapper {
    padding: 2rem 0;
}

/* Header */
.v362-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(38, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(135, 206, 250, 0.2);
    transition: var(--v362-transition);
}

.v362-header-scrolled {
    background: rgba(38, 38, 38, 0.98);
    box-shadow: var(--v362-shadow);
}

.v362-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 430px;
    margin: 0 auto;
}

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

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

.v362-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v362-primary);
    letter-spacing: 0.5px;
}

.v362-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v362-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: var(--v362-radius);
    border: none;
    cursor: pointer;
    transition: var(--v362-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v362-btn-primary {
    background: var(--v362-primary);
    color: var(--v362-bg-dark);
}

.v362-btn-primary:hover {
    background: #6bb8e8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(135, 206, 250, 0.4);
}

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

.v362-btn-secondary:hover {
    background: var(--v362-primary);
    color: var(--v362-bg-dark);
}

.v362-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--v362-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

@media (min-width: 769px) {
    .v362-nav {
        display: flex;
        gap: 2rem;
    }

    .v362-nav a {
        color: var(--v362-text-light);
        font-size: 1.4rem;
        font-weight: 500;
    }

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

/* Mobile Menu */
#pro362-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v362-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    border-left: 1px solid rgba(135, 206, 250, 0.2);
}

.pro362-menu-active {
    right: 0 !important;
}

.v362-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.v362-mobile-nav a {
    color: var(--v362-text-light);
    font-size: 1.6rem;
    padding: 1rem;
    border-radius: var(--v362-radius);
    transition: var(--v362-transition);
}

.v362-mobile-nav a:hover {
    background: rgba(135, 206, 250, 0.1);
    color: var(--v362-primary);
}

#pro362-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: var(--v362-transition);
}

.pro362-overlay-active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile Menu Toggle - Show on mobile */
@media (max-width: 768px) {
    .v362-menu-toggle {
        display: block;
    }
}

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

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

/* Carousel */
.v362-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}

.v362-slide {
    display: none;
    width: 100%;
    cursor: pointer;
}

.v362-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.v362-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.v362-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--v362-transition);
}

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

/* Section Styles */
.v362-section {
    padding: 2.5rem 1.5rem;
}

.v362-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v362-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.v362-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--v362-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Game Grid */
.v362-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.v362-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v362-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--v362-transition);
    border: 1px solid rgba(135, 206, 250, 0.1);
}

.v362-game-card:hover {
    transform: translateY(-4px);
    border-color: var(--v362-primary);
    box-shadow: 0 8px 25px rgba(135, 206, 250, 0.2);
}

.v362-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.v362-game-card p {
    padding: 0.8rem;
    font-size: 1.1rem;
    text-align: center;
    color: var(--v362-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Section */
.v362-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--v362-accent);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--v362-primary);
}

/* Content Cards */
.v362-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v362-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(135, 206, 250, 0.1);
}

.v362-card h3 {
    font-size: 1.8rem;
    color: var(--v362-primary);
    margin-bottom: 1rem;
}

.v362-card p {
    color: var(--v362-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Promo Link Styles */
.v362-promo-link {
    color: var(--v362-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--v362-transition);
}

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

.v362-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--v362-primary), #6bb8e8);
    color: var(--v362-bg-dark);
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--v362-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.v362-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(135, 206, 250, 0.5);
}

/* Features Grid */
.v362-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.v362-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--v362-radius);
    border: 1px solid rgba(135, 206, 250, 0.1);
}

.v362-feature i {
    font-size: 2.8rem;
    color: var(--v362-primary);
    margin-bottom: 1rem;
}

.v362-feature h4 {
    font-size: 1.4rem;
    color: var(--v362-text-light);
    margin-bottom: 0.5rem;
}

.v362-feature p {
    font-size: 1.2rem;
    color: var(--v362-text-muted);
}

/* Footer */
.v362-footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid rgba(135, 206, 250, 0.2);
}

.v362-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.v362-footer-brand p {
    color: var(--v362-text-muted);
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

.v362-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.v362-footer-links a {
    background: rgba(135, 206, 250, 0.1);
    color: var(--v362-text-light);
    padding: 0.8rem 1.5rem;
    border-radius: var(--v362-radius);
    font-size: 1.2rem;
    transition: var(--v362-transition);
}

.v362-footer-links a:hover {
    background: var(--v362-primary);
    color: var(--v362-bg-dark);
}

.v362-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(135, 206, 250, 0.1);
    border-bottom: 1px solid rgba(135, 206, 250, 0.1);
}

.v362-footer-nav a {
    color: var(--v362-text-muted);
    font-size: 1.3rem;
}

.v362-footer-nav a:hover {
    color: var(--v362-primary);
}

.v362-copyright {
    text-align: center;
    color: var(--v362-text-muted);
    font-size: 1.2rem;
}

/* Mobile Bottom Navigation */
.v362-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0.98) 0%, rgba(26, 26, 46, 1) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(135, 206, 250, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.v362-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: var(--v362-transition);
    color: var(--v362-text-muted);
}

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

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

.v362-nav-item span {
    font-size: 11px;
    font-weight: 500;
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .v362-bottom-nav {
        display: none;
    }
}

/* Utility Classes */
.v362-text-center { text-align: center; }
.v362-text-primary { color: var(--v362-primary); }
.v362-mb-1 { margin-bottom: 1rem; }
.v362-mb-2 { margin-bottom: 2rem; }
.v362-mt-2 { margin-top: 2rem; }

/* Responsive Adjustments */
@media (max-width: 380px) {
    .v362-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v362-btn {
        padding: 0.5rem 1rem;
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes v362-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.v362-animate {
    animation: v362-fadeIn 0.5s ease forwards;
}

/* Testimonials */
.v362-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--v362-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--v362-primary);
}

.v362-testimonial p {
    font-style: italic;
    color: var(--v362-text-light);
    margin-bottom: 0.8rem;
}

.v362-testimonial-author {
    font-size: 1.2rem;
    color: var(--v362-primary);
    font-weight: 600;
}

/* Payment Methods */
.v362-payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.v362-payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: var(--v362-radius);
    font-size: 1.3rem;
    color: var(--v362-text-light);
}

/* Winners Showcase */
.v362-winner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--v362-radius);
    margin-bottom: 0.8rem;
}

.v362-winner-name {
    font-weight: 600;
    color: var(--v362-text-light);
}

.v362-winner-amount {
    color: #4ade80;
    font-weight: 700;
}
