/**
 * Milyon Club - Theme Stylesheet
 * Version: 1.0.0
 * Prefix: s441-
 * Color Palette: #3A3A3A | #FF8C00 | #FFB347 | #495057 | #FF69B4 | #FFEBCD
 */

/* CSS Variables */
:root {
    --s441-primary: #FF8C00;
    --s441-secondary: #FFB347;
    --s441-accent: #FF69B4;
    --s441-bg-dark: #3A3A3A;
    --s441-bg-medium: #495057;
    --s441-text-light: #FFEBCD;
    --s441-text-white: #FFFFFF;
    --s441-gradient-primary: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
    --s441-gradient-accent: linear-gradient(135deg, #FF69B4 0%, #FFB347 100%);
    --s441-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --s441-radius: 12px;
    --s441-radius-sm: 8px;
}

/* Base Reset */
* {
    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: var(--s441-bg-dark);
    color: var(--s441-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    color: var(--s441-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--s441-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.s441-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s441-wrapper {
    padding: 1rem 0;
}

/* Header */
.s441-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.98) 0%, rgba(73, 80, 87, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    border-bottom: 2px solid var(--s441-primary);
}

.s441-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
}

.s441-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.s441-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.s441-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--s441-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s441-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.s441-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--s441-radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 36px;
}

.s441-btn-primary {
    background: var(--s441-gradient-primary);
    color: var(--s441-text-white);
}

.s441-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.s441-btn-secondary {
    background: transparent;
    border: 2px solid var(--s441-primary);
    color: var(--s441-primary);
}

.s441-btn-secondary:hover {
    background: var(--s441-primary);
    color: var(--s441-text-white);
}

.s441-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.s441-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--s441-primary);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.s441-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--s441-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 6rem 1.5rem 2rem;
    border-left: 2px solid var(--s441-primary);
}

.pro293-menu-active {
    right: 0 !important;
}

.s441-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;
}

.pro293-overlay-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.s441-nav-list {
    list-style: none;
}

.s441-nav-item {
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.s441-nav-link {
    display: block;
    padding: 1.2rem 0;
    color: var(--s441-text-light);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.s441-nav-link:hover {
    color: var(--s441-primary);
    padding-left: 0.5rem;
}

/* Main Content */
main {
    padding-top: 60px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.s441-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--s441-radius);
    margin-bottom: 1.5rem;
}

.s441-slide {
    display: none;
    width: 100%;
}

.s441-slide:first-child {
    display: block;
}

.s441-slide img {
    width: 100%;
    border-radius: var(--s441-radius);
    cursor: pointer;
}

.s441-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.pro293-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pro293-dot-active {
    background: var(--s441-primary);
    transform: scale(1.2);
}

/* Section */
.s441-section {
    padding: 1.5rem 0;
}

.s441-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--s441-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s441-section-subtitle {
    font-size: 1.4rem;
    color: var(--s441-secondary);
    margin-bottom: 1rem;
}

/* Game Grid */
.s441-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.s441-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.s441-game-item:hover {
    transform: scale(1.05);
}

.s441-game-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--s441-radius-sm);
    margin-bottom: 0.4rem;
    border: 2px solid var(--s441-bg-medium);
    transition: border-color 0.3s ease;
}

.s441-game-item:hover .s441-game-icon {
    border-color: var(--s441-primary);
}

.s441-game-name {
    font-size: 1rem;
    color: var(--s441-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Cards */
.s441-card {
    background: var(--s441-bg-medium);
    border-radius: var(--s441-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.s441-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--s441-primary);
}

.s441-card-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--s441-text-light);
}

/* Features Grid */
.s441-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.s441-feature-item {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 179, 71, 0.1) 100%);
    border-radius: var(--s441-radius-sm);
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.s441-feature-icon {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.s441-feature-text {
    font-size: 1.2rem;
    color: var(--s441-text-light);
}

/* Promo Banner */
.s441-promo-banner {
    background: var(--s441-gradient-accent);
    border-radius: var(--s441-radius);
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.s441-promo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--s441-text-white);
    margin-bottom: 0.5rem;
}

.s441-promo-text {
    font-size: 1.3rem;
    color: var(--s441-text-white);
    margin-bottom: 1rem;
}

/* Footer */
.s441-footer {
    background: linear-gradient(180deg, var(--s441-bg-medium) 0%, var(--s441-bg-dark) 100%);
    padding: 2rem 1rem;
    margin-top: 2rem;
    border-top: 2px solid var(--s441-primary);
}

.s441-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.s441-footer-link {
    color: var(--s441-text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.s441-footer-link:hover {
    color: var(--s441-primary);
}

.s441-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.s441-partner-logo {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.s441-partner-logo:hover {
    opacity: 1;
}

.s441-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--s441-secondary);
}

/* Bottom Navigation */
.s441-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(73, 80, 87, 0.98) 0%, rgba(58, 58, 58, 0.98) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 2px solid var(--s441-primary);
}

@media (min-width: 769px) {
    .s441-bottom-nav {
        display: none;
    }
}

.s441-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--s441-text-light);
}

.s441-nav-btn:hover {
    transform: scale(1.1);
}

.s441-nav-btn.active {
    color: var(--s441-primary);
}

.s441-nav-btn i,
.s441-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.s441-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* H1 Title */
.s441-main-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--s441-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* List Styles */
.s441-list {
    list-style: none;
    padding: 0;
}

.s441-list-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.s441-list-item i {
    color: var(--s441-primary);
    font-size: 1.6rem;
    margin-top: 0.2rem;
}

/* Responsive utilities */
@media (max-width: 380px) {
    .s441-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
