/**
 * sinag - Main Stylesheet
 * Mobile-first gaming website design
 * Prefix: v626- (to avoid CSS conflicts)
 * Color Palette: #DDA0DD | #BDB76B | #F0E68C | #0C0C0C | #B8860B
 */

/* Root Variables */
:root {
    --v626-primary: #B8860B;
    --v626-secondary: #DDA0DD;
    --v626-accent: #F0E68C;
    --v626-bg-dark: #0C0C0C;
    --v626-bg-card: #1a1a1a;
    --v626-text-light: #F0E68C;
    --v626-text-muted: #BDB76B;
    --v626-gold: #B8860B;
    --v626-rose: #DDA0DD;
    --v626-khaki: #BDB76B;
    --v626-header-height: 60px;
    --v626-bottom-nav-height: 60px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v626-bg-dark);
    color: var(--v626-text-light);
    line-height: 1.5;
    min-height: 100vh;
    max-width: 430px;
    margin: 0 auto;
    padding-top: var(--v626-header-height);
}

/* Container */
.v626-container {
    width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Header */
.v626-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    height: var(--v626-header-height);
    background: linear-gradient(135deg, var(--v626-bg-dark) 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--v626-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 1000;
}

.v626-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v626-logo img {
    width: 32px;
    height: 32px;
}

.v626-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--v626-gold);
    text-decoration: none;
}

.v626-header-actions {
    display: flex;
    gap: 1rem;
}

.v626-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.v626-btn-register {
    background: linear-gradient(135deg, var(--v626-gold) 0%, #d4a017 100%);
    color: var(--v626-bg-dark);
}

.v626-btn-login {
    background: transparent;
    border: 2px solid var(--v626-rose);
    color: var(--v626-rose);
}

.v626-btn-register:hover,
.v626-btn-login:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
}

/* Menu Toggle */
.v626-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--v626-gold);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Navigation */
.v626-nav {
    display: none;
}

.v626-nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.v626-nav-link {
    color: var(--v626-text-light);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.v626-nav-link:hover {
    color: var(--v626-gold);
}

/* Mobile Menu */
.v626-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, var(--v626-bg-dark) 100%);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.v626-menu-active {
    right: 0;
}

.v626-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--v626-gold);
}

.v626-mobile-menu-title {
    font-size: 1.8rem;
    color: var(--v626-gold);
    font-weight: 700;
}

.v626-close-menu {
    background: none;
    border: none;
    color: var(--v626-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.v626-mobile-nav-list {
    list-style: none;
}

.v626-mobile-nav-item {
    margin-bottom: 1.5rem;
}

.v626-mobile-nav-link {
    color: var(--v626-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.v626-mobile-nav-link:hover {
    background: rgba(184, 134, 11, 0.2);
    color: var(--v626-gold);
}

.v626-mobile-nav-link i {
    width: 24px;
    text-align: center;
}

/* Overlay */
.v626-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.v626-overlay-active {
    opacity: 1;
    visibility: visible;
}

/* Carousel */
.v626-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.v626-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.v626-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.v626-slide-active {
    opacity: 1;
}

.v626-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v626-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.v626-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v626-dot-active {
    background: var(--v626-gold);
    transform: scale(1.2);
}

/* Section Titles */
.v626-section-title {
    font-size: 2.2rem;
    color: var(--v626-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.v626-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--v626-rose), var(--v626-gold));
    border-radius: 2px;
}

/* Game Grid */
.v626-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.v626-game-card {
    background: var(--v626-bg-card);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.v626-game-card:hover {
    transform: translateY(-3px);
    border-color: var(--v626-gold);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.v626-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.v626-game-name {
    font-size: 1.1rem;
    color: var(--v626-text-light);
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Section */
.v626-category-section {
    margin-bottom: 3rem;
}

.v626-category-title {
    font-size: 1.8rem;
    color: var(--v626-rose);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.v626-category-title i {
    color: var(--v626-gold);
}

/* Content Section */
.v626-content-section {
    background: var(--v626-bg-card);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.v626-content-title {
    font-size: 1.8rem;
    color: var(--v626-gold);
    margin-bottom: 1.5rem;
}

.v626-content-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--v626-text-light);
    margin-bottom: 1rem;
}

.v626-content-text:last-child {
    margin-bottom: 0;
}

/* Promo Link */
.v626-promo-link {
    color: var(--v626-gold);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.v626-promo-link:hover {
    color: var(--v626-rose);
}

/* Internal Link */
.v626-internal-link {
    color: var(--v626-rose);
    text-decoration: none;
    border-bottom: 1px dashed var(--v626-rose);
    transition: all 0.3s ease;
}

.v626-internal-link:hover {
    color: var(--v626-gold);
    border-color: var(--v626-gold);
}

/* Features List */
.v626-features-list {
    list-style: none;
}

.v626-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 0.8rem;
}

.v626-feature-icon {
    color: var(--v626-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.v626-feature-text {
    font-size: 1.4rem;
    color: var(--v626-text-light);
}

/* FAQ Section */
.v626-faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(189, 183, 107, 0.3);
    padding-bottom: 1.5rem;
}

.v626-faq-question {
    font-size: 1.5rem;
    color: var(--v626-rose);
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v626-faq-answer {
    font-size: 1.4rem;
    color: var(--v626-text-light);
    line-height: 1.6;
}

/* RTP Grid */
.v626-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.v626-rtp-card {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(221, 160, 221, 0.1) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--v626-gold);
}

.v626-rtp-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--v626-gold);
    margin-bottom: 0.5rem;
}

.v626-rtp-label {
    font-size: 1.2rem;
    color: var(--v626-text-muted);
}

/* CTA Section */
.v626-cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3) 0%, rgba(221, 160, 221, 0.2) 100%);
    border-radius: 1rem;
    margin: 2rem 0;
}

.v626-cta-title {
    font-size: 2.4rem;
    color: var(--v626-gold);
    margin-bottom: 1rem;
}

.v626-cta-text {
    font-size: 1.5rem;
    color: var(--v626-text-light);
    margin-bottom: 2rem;
}

.v626-cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--v626-gold) 0%, #d4a017 100%);
    color: var(--v626-bg-dark);
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.v626-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
}

/* Footer */
.v626-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--v626-bg-dark) 100%);
    padding: 3rem 1.5rem;
    padding-bottom: calc(var(--v626-bottom-nav-height) + 2rem);
    border-top: 2px solid var(--v626-gold);
}

.v626-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.v626-footer-link {
    color: var(--v626-text-muted);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.v626-footer-link:hover {
    color: var(--v626-gold);
}

.v626-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.v626-partner-logo {
    width: 40px;
    height: 25px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.v626-partner-logo:hover {
    opacity: 1;
}

.v626-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--v626-text-muted);
}

/* Bottom Navigation */
.v626-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    margin: 0 auto;
    height: var(--v626-bottom-nav-height);
    background: linear-gradient(180deg, #1a1a1a 0%, var(--v626-bg-dark) 100%);
    border-top: 2px solid var(--v626-gold);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.v626-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.8rem;
}

.v626-nav-btn:hover {
    background: rgba(184, 134, 11, 0.2);
}

.v626-nav-btn i {
    font-size: 22px;
    color: var(--v626-text-muted);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.v626-nav-btn span {
    font-size: 10px;
    color: var(--v626-text-muted);
    transition: color 0.3s ease;
}

.v626-nav-btn:hover i,
.v626-nav-btn:hover span {
    color: var(--v626-gold);
}

.v626-nav-btn-active i,
.v626-nav-btn-active span {
    color: var(--v626-gold);
}

/* Desktop Responsive */
@media (min-width: 769px) {
    body {
        max-width: 100%;
    }

    .v626-header {
        max-width: 100%;
    }

    .v626-menu-toggle {
        display: none;
    }

    .v626-nav {
        display: block;
    }

    .v626-bottom-nav {
        display: none;
    }

    .v626-footer {
        padding-bottom: 2rem;
    }

    .v626-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .v626-carousel {
        height: 400px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .v626-menu-toggle {
        display: block;
    }

    .v626-header-actions .v626-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1.2rem;
    }

    main {
        padding-bottom: calc(var(--v626-bottom-nav-height) + 2rem);
    }
}

/* Utility Classes */
.v626-text-center {
    text-align: center;
}

.v626-mb-1 {
    margin-bottom: 1rem;
}

.v626-mb-2 {
    margin-bottom: 2rem;
}

.v626-mb-3 {
    margin-bottom: 3rem;
}

.v626-hidden {
    display: none;
}
