/**
 * Scatter Game - Main Stylesheet
 * Website: scattergame.sbs
 * Prefix: s641-
 */

/* CSS Variables */
:root {
    --s641-primary: #FF69B4;
    --s641-secondary: #4682B4;
    --s641-accent: #FFCCCB;
    --s641-bg: #1E1E1E;
    --s641-bg-light: #2a2a2a;
    --s641-text: #FFFFBA;
    --s641-text-light: #ffffff;
    --s641-gray: #6C757D;
    --s641-success: #28a745;
    --s641-gradient: linear-gradient(135deg, #FF69B4 0%, #4682B4 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--s641-bg);
    color: var(--s641-text-light);
    line-height: 1.5;
    font-size: 1.4rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.s641-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--s641-bg-light);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 105, 180, 0.3);
}

.s641-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.s641-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

.s641-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.s641-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.3rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.s641-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

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

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

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

/* Navigation */
.s641-nav {
    display: flex;
    gap: 2rem;
}

.s641-nav a {
    color: var(--s641-text-light);
    font-size: 1.4rem;
    transition: color 0.3s;
}

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

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

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

.s641-mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: var(--s641-text-light);
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.s641-mobile-menu a:hover {
    color: var(--s641-primary);
}

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

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

.s641-no-scroll {
    overflow: hidden;
}

/* Main Content */
.s641-main {
    padding-top: 70px;
    min-height: 100vh;
}

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

/* Carousel */
.s641-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.s641-slides {
    position: relative;
}

.s641-slide {
    display: none;
    cursor: pointer;
}

.s641-slide-active {
    display: block;
}

.s641-slide img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
}

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

.s641-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.s641-dot-active {
    background: var(--s641-primary);
}

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

/* Section Title */
.s641-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--s641-text-light);
    text-align: center;
}

.s641-section-title span {
    color: var(--s641-primary);
}

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

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

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

.s641-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

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

/* Category Section */
.s641-category-section {
    margin-bottom: 3rem;
}

.s641-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.s641-category-icon {
    width: 40px;
    height: 40px;
    background: var(--s641-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.s641-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--s641-text-light);
}

/* Info Cards */
.s641-info-card {
    background: var(--s641-bg-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.s641-info-card h3 {
    font-size: 1.6rem;
    color: var(--s641-primary);
    margin-bottom: 1rem;
}

.s641-info-card p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--s641-text-light);
    margin-bottom: 1rem;
}

.s641-info-card ul {
    list-style: none;
    padding-left: 0;
}

.s641-info-card li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.3rem;
}

.s641-info-card li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--s641-primary);
}

/* Promo Banner */
.s641-promo-banner {
    background: var(--s641-gradient);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.s641-promo-banner h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--s641-text-light);
}

.s641-promo-banner p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--s641-text-light);
}

/* Footer */
.s641-footer {
    background: var(--s641-bg-light);
    padding: 3rem 1.5rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
}

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

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

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

.s641-footer-links a {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 105, 180, 0.2);
    border-radius: 20px;
    font-size: 1.2rem;
    color: var(--s641-text-light);
    transition: all 0.3s;
}

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

.s641-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    color: var(--s641-gray);
}

/* Bottom Navigation */
.s641-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--s641-bg-light);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.8rem 0;
    z-index: 1000;
    border-top: 1px solid rgba(255, 105, 180, 0.3);
}

@media (min-width: 769px) {
    .s641-bottom-nav {
        display: none;
    }
}

.s641-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 60px;
    min-height: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.s641-nav-item:hover {
    transform: scale(1.1);
}

.s641-nav-item.active {
    color: var(--s641-primary);
}

.s641-nav-item i,
.s641-nav-item span.material-icons-outlined {
    font-size: 24px;
}

.s641-nav-item span.nav-text {
    font-size: 10px;
    color: var(--s641-text-light);
}

.s641-nav-item.active span.nav-text {
    color: var(--s641-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .s641-nav {
        display: none;
    }

    .s641-menu-toggle {
        display: block;
    }

    .s641-header-actions .s641-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }

    .s641-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
}

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

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

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

.s641-highlight {
    color: var(--s641-primary);
    font-weight: 600;
}

/* Testimonials */
.s641-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.s641-testimonial {
    background: var(--s641-bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--s641-primary);
}

.s641-testimonial p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Payment Methods */
.s641-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.s641-payment-item {
    background: var(--s641-bg-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

/* Winners */
.s641-winners {
    background: var(--s641-bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.s641-winner-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.s641-winner-item:last-child {
    border-bottom: none;
}

.s641-winner-name {
    font-weight: 600;
}

.s641-winner-amount {
    color: var(--s641-primary);
    font-weight: 700;
}
