/**
 * Fair Play Game - Main Stylesheet
 * Prefix: se0d-
 * Version: 1.0.0
 */

/* CSS Variables */
:root {
    --se0d-primary: #FFF176;
    --se0d-bg-dark: #1B263B;
    --se0d-accent: #FF5722;
    --se0d-purple: #DA70D6;
    --se0d-violet: #6A5ACD;
    --se0d-text-light: #FFFFFF;
    --se0d-text-muted: #B8C4CE;
    --se0d-bg-card: #243447;
    --se0d-bg-hover: #2D4156;
    --se0d-border: #3A4A5C;
    --se0d-success: #4CAF50;
    --se0d-gradient: linear-gradient(135deg, #6A5ACD 0%, #DA70D6 50%, #FF5722 100%);
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--se0d-bg-dark);
    color: var(--se0d-text-light);
    line-height: 1.5;
    font-size: 1.6rem;
    min-height: 100vh;
}

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

/* Header Styles */
.se0d-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--se0d-bg-dark) 0%, rgba(27, 38, 59, 0.95) 100%);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--se0d-border);
}

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

.se0d-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--se0d-text-light);
}

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

.se0d-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--se0d-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.se0d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    min-height: 36px;
}

.se0d-btn-primary {
    background: var(--se0d-gradient);
    color: var(--se0d-text-light);
}

.se0d-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.4);
}

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

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

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

/* Mobile Menu */
.se0d-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--se0d-bg-card);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.se0d-menu-active {
    right: 0;
}

.se0d-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;
}

.se0d-overlay-active {
    opacity: 1;
    visibility: visible;
}

.se0d-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--se0d-border);
}

.se0d-menu-close {
    background: transparent;
    border: none;
    color: var(--se0d-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.se0d-menu-nav {
    list-style: none;
}

.se0d-menu-item {
    margin-bottom: 0.5rem;
}

.se0d-menu-link {
    display: block;
    padding: 1rem;
    color: var(--se0d-text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.se0d-menu-link:hover {
    background: var(--se0d-bg-hover);
    color: var(--se0d-primary);
}

/* Main Content */
.se0d-main {
    padding-top: 70px;
    padding-bottom: 2rem;
}

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

/* Carousel Styles */
.se0d-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.se0d-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.se0d-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.se0d-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.se0d-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.se0d-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Section Styles */
.se0d-section {
    padding: 2rem 0;
}

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

.se0d-section-subtitle {
    font-size: 1.4rem;
    color: var(--se0d-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

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

.se0d-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.se0d-game-item:hover {
    transform: scale(1.05);
}

.se0d-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--se0d-border);
    transition: border-color 0.3s ease;
}

.se0d-game-item:hover .se0d-game-img {
    border-color: var(--se0d-primary);
}

.se0d-game-name {
    font-size: 1.1rem;
    color: var(--se0d-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Title */
.se0d-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--se0d-purple);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--se0d-accent);
}

/* Card Styles */
.se0d-card {
    background: var(--se0d-bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--se0d-border);
}

.se0d-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--se0d-primary);
}

.se0d-card-text {
    font-size: 1.4rem;
    color: var(--se0d-text-muted);
    line-height: 1.6;
}

/* Feature List */
.se0d-feature-list {
    list-style: none;
}

.se0d-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--se0d-bg-hover);
    border-radius: 8px;
}

.se0d-feature-icon {
    font-size: 2rem;
    color: var(--se0d-accent);
}

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

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

/* Promo Link Styles */
.se0d-promo-link {
    color: var(--se0d-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}

.se0d-promo-link:hover {
    color: var(--se0d-accent);
}

.se0d-promo-bold {
    color: var(--se0d-accent);
    font-weight: 700;
    cursor: pointer;
}

/* Footer Styles */
.se0d-footer {
    background: var(--se0d-bg-card);
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--se0d-border);
}

.se0d-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.se0d-footer-desc {
    font-size: 1.3rem;
    color: var(--se0d-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.se0d-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.se0d-footer-link {
    font-size: 1.2rem;
    color: var(--se0d-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.se0d-footer-link:hover {
    color: var(--se0d-primary);
}

.se0d-footer-promo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.se0d-footer-promo .se0d-btn {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
}

.se0d-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--se0d-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--se0d-border);
}

/* Bottom Navigation */
.se0d-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.98) 0%, var(--se0d-bg-dark) 100%);
    border-top: 1px solid var(--se0d-border);
    z-index: 1000;
    padding: 0.5rem 0;
    display: none;
}

@media (max-width: 768px) {
    .se0d-bottom-nav {
        display: block;
    }
}

.se0d-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.se0d-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0.5rem;
    color: var(--se0d-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
}

.se0d-nav-item:hover,
.se0d-nav-item-active {
    color: var(--se0d-primary);
    background: var(--se0d-bg-hover);
    transform: scale(1.05);
}

.se0d-nav-icon {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
}

.se0d-nav-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Utilities */
.se0d-text-center {
    text-align: center;
}

.se0d-mb-1 {
    margin-bottom: 1rem;
}

.se0d-mb-2 {
    margin-bottom: 2rem;
}

.se0d-mb-3 {
    margin-bottom: 3rem;
}

.se0d-hidden {
    display: none;
}

/* Testimonials */
.se0d-testimonials {
    display: grid;
    gap: 1rem;
}

.se0d-testimonial {
    background: var(--se0d-bg-card);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid var(--se0d-border);
}

.se0d-testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.se0d-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--se0d-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--se0d-text-light);
}

.se0d-testimonial-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--se0d-text-light);
}

.se0d-testimonial-text {
    font-size: 1.3rem;
    color: var(--se0d-text-muted);
    line-height: 1.5;
}

/* Payment Methods */
.se0d-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.se0d-payment-item {
    background: var(--se0d-bg-card);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--se0d-border);
}

.se0d-payment-icon {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--se0d-primary);
}

.se0d-payment-name {
    font-size: 1.2rem;
    color: var(--se0d-text-light);
}

/* Winners Section */
.se0d-winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.se0d-winner-item {
    background: var(--se0d-bg-card);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid var(--se0d-border);
}

.se0d-winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--se0d-violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--se0d-text-light);
}

.se0d-winner-info {
    flex: 1;
}

.se0d-winner-name {
    font-size: 1.2rem;
    color: var(--se0d-text-light);
    font-weight: 500;
}

.se0d-winner-amount {
    font-size: 1.3rem;
    color: var(--se0d-accent);
    font-weight: 700;
}

/* Responsive */
@media (min-width: 769px) {
    .se0d-bottom-nav {
        display: none;
    }

    .se0d-container {
        max-width: 600px;
    }
}

/* Animation */
@keyframes se0d-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.se0d-pulse {
    animation: se0d-pulse 2s infinite;
}
