/**
 * ninogaming mma - Main Stylesheet
 * Prefix: s649-
 * Website: ninogamingmma.click
 * Color Palette: #F5F5F5 | #9400D3 | #BDB76B | #2D2D2D | #E6E6FA
 */

/* CSS Variables */
:root {
    --s649-primary: #9400D3;
    --s649-secondary: #BDB76B;
    --s649-bg-dark: #2D2D2D;
    --s649-bg-light: #F5F5F5;
    --s649-text-light: #E6E6FA;
    --s649-text-dark: #2D2D2D;
    --s649-accent: #9400D3;
    --s649-gradient: linear-gradient(135deg, #9400D3 0%, #BDB76B 100%);
    --s649-shadow: 0 4px 15px rgba(148, 0, 211, 0.3);
    --s649-radius: 8px;
    --s649-radius-lg: 16px;
}

/* Reset & 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(--s649-bg-dark);
    color: var(--s649-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    overflow-x: hidden;
}

/* Container */
.s649-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s649-wrapper {
    width: 100%;
    padding: 1rem;
}

/* Header */
.s649-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.98) 0%, rgba(45, 45, 45, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(148, 0, 211, 0.3);
}

.s649-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
}

.s649-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.s649-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.s649-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--s649-primary);
    letter-spacing: 0.5px;
}

.s649-header-btns {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.s649-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--s649-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.s649-btn-login {
    background: transparent;
    color: var(--s649-text-light);
    border: 1px solid var(--s649-primary);
}

.s649-btn-login:hover {
    background: rgba(148, 0, 211, 0.2);
}

.s649-btn-register {
    background: var(--s649-gradient);
    color: white;
    box-shadow: var(--s649-shadow);
}

.s649-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 0, 211, 0.4);
}

.s649-menu-toggle {
    background: none;
    border: none;
    color: var(--s649-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.s649-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--s649-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 6rem 2rem 2rem;
    border-left: 1px solid rgba(148, 0, 211, 0.3);
    overflow-y: auto;
}

.game64e1-menu-active {
    right: 0;
}

.s649-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;
}

.game64e1-overlay-active {
    opacity: 1;
    visibility: visible;
}

.s649-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--s649-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.s649-menu-list {
    list-style: none;
}

.s649-menu-item {
    margin-bottom: 0.5rem;
}

.s649-menu-link {
    display: block;
    padding: 1rem 1.2rem;
    color: var(--s649-text-light);
    text-decoration: none;
    font-size: 1.4rem;
    border-radius: var(--s649-radius);
    transition: all 0.3s ease;
}

.s649-menu-link:hover {
    background: rgba(148, 0, 211, 0.2);
    color: var(--s649-primary);
}

/* Main Content */
.s649-main {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Carousel */
.s649-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 0 0 var(--s649-radius-lg) var(--s649-radius-lg);
}

.game64e1-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.game64e1-slide {
    min-width: 100%;
    position: relative;
}

.game64e1-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.s649-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.game64e1-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.game64e1-dot-active {
    background: var(--s649-primary);
    width: 20px;
    border-radius: 4px;
}

/* Section Titles */
.s649-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s649-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.s649-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--s649-gradient);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* Game Grid */
.s649-game-section {
    padding: 2rem 1rem;
    background: rgba(45, 45, 45, 0.5);
    margin-bottom: 1.5rem;
    border-radius: var(--s649-radius-lg);
}

.s649-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--s649-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.s649-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.s649-game-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.s649-game-card:hover {
    transform: scale(1.05);
}

.s649-game-icon {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--s649-radius);
    object-fit: cover;
    margin-bottom: 0.4rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.s649-game-card:hover .s649-game-icon {
    border-color: var(--s649-primary);
}

.s649-game-name {
    font-size: 1.1rem;
    color: var(--s649-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.2rem;
}

/* Content Sections */
.s649-content-section {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(148, 0, 211, 0.1) 0%, rgba(189, 183, 107, 0.1) 100%);
    border-radius: var(--s649-radius-lg);
    border: 1px solid rgba(148, 0, 211, 0.2);
}

.s649-content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--s649-primary);
    margin-bottom: 1.2rem;
}

.s649-content-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--s649-text-light);
    margin-bottom: 1rem;
}

.s649-content-text a {
    color: var(--s649-secondary);
    text-decoration: none;
    font-weight: 600;
}

.s649-content-text a:hover {
    text-decoration: underline;
}

/* Features List */
.s649-features-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.s649-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: var(--s649-radius);
}

.s649-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s649-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.s649-feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.s649-feature-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--s649-primary);
    margin-bottom: 0.4rem;
}

.s649-feature-content p {
    font-size: 1.2rem;
    color: var(--s649-text-light);
    opacity: 0.9;
}

/* FAQ Section */
.s649-faq-item {
    margin-bottom: 1rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: var(--s649-radius);
    overflow: hidden;
}

.s649-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--s649-secondary);
    background: rgba(148, 0, 211, 0.1);
    cursor: pointer;
}

.s649-faq-answer {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
    color: var(--s649-text-light);
    line-height: 1.6;
}

/* Promo Button Large */
.s649-promo-large {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: var(--s649-gradient);
    color: white;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: var(--s649-radius-lg);
    text-decoration: none;
    box-shadow: var(--s649-shadow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.s649-promo-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(148, 0, 211, 0.5);
}

/* Footer */
.s649-footer {
    background: linear-gradient(180deg, var(--s649-bg-dark) 0%, rgba(45, 45, 45, 0.95) 100%);
    padding: 2rem 1rem;
    border-top: 1px solid rgba(148, 0, 211, 0.3);
}

.s649-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.s649-footer-link {
    color: var(--s649-text-light);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: var(--s649-radius);
    transition: all 0.3s ease;
}

.s649-footer-link:hover {
    background: rgba(148, 0, 211, 0.2);
    color: var(--s649-primary);
}

.s649-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.s649-partner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.s649-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.s649-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--s649-text-light);
    opacity: 0.7;
}

/* Mobile Bottom Navigation */
.s649-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(148, 0, 211, 0.3);
    padding: 0 0.5rem;
}

.s649-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--s649-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 12px;
}

.s649-nav-btn:hover {
    background: rgba(148, 0, 211, 0.2);
    color: var(--s649-primary);
}

.s649-nav-btn.active {
    color: var(--s649-primary);
    background: rgba(148, 0, 211, 0.15);
}

.s649-nav-btn i,
.s649-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.s649-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* Desktop - Hide bottom nav */
@media (min-width: 769px) {
    .s649-bottom-nav {
        display: none;
    }

    .s649-main {
        padding-bottom: 2rem;
    }
}

/* Mobile padding for bottom nav */
@media (max-width: 768px) {
    .s649-main {
        padding-bottom: 80px;
    }
}

/* Utility Classes */
.s649-text-center {
    text-align: center;
}

.s649-mb-1 {
    margin-bottom: 1rem;
}

.s649-mb-2 {
    margin-bottom: 2rem;
}

.s649-mt-2 {
    margin-top: 2rem;
}

/* RTP Stats */
.s649-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.s649-rtp-item {
    background: rgba(45, 45, 45, 0.5);
    padding: 1rem;
    border-radius: var(--s649-radius);
    text-align: center;
}

.s649-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s649-secondary);
}

.s649-rtp-label {
    font-size: 1.2rem;
    color: var(--s649-text-light);
    opacity: 0.8;
}

/* Promotional Links */
.s649-promo-link {
    color: var(--s649-secondary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.s649-promo-link:hover {
    color: var(--s649-primary);
    text-decoration: underline;
}

.s649-promo-text {
    font-weight: 700;
    color: var(--s649-primary);
}
