/**
 * MultiBet Website CSS Stylesheet
 * @description Mobile-first responsive design for multibet.sbs
 * @version 1.0.0
 * @prefix s1a1-
 */

/* CSS Variables */
:root {
    --s1a1-bg-dark: #273746;
    --s1a1-accent: #FF4500;
    --s1a1-gold: #FFEB3B;
    --s1a1-orange: #FFB74D;
    --s1a1-pink: #FFB6C1;
    --s1a1-text-light: #ffffff;
    --s1a1-text-muted: #b0b0b0;
    --s1a1-bg-card: #1e2d3a;
    --s1a1-bg-gradient: linear-gradient(135deg, #273746 0%, #1e2d3a 100%);
    --s1a1-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --s1a1-radius: 8px;
    --s1a1-radius-lg: 16px;
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--s1a1-bg-dark);
    color: var(--s1a1-text-light);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Container */
.s1a1-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.s1a1-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--s1a1-bg-dark);
    box-shadow: var(--s1a1-shadow);
    transition: all 0.3s ease;
}

.s1a1-header-scrolled {
    background: rgba(39, 55, 70, 0.98);
}

.s1a1-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 430px;
    margin: 0 auto;
}

.s1a1-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.s1a1-logo img {
    width: 32px;
    height: 32px;
}

.s1a1-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--s1a1-gold);
    letter-spacing: 1px;
}

.s1a1-header-actions {
    display: flex;
    gap: 0.8rem;
}

.s1a1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: var(--s1a1-radius);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.s1a1-btn-primary {
    background: var(--s1a1-accent);
    color: var(--s1a1-text-light);
}

.s1a1-btn-primary:hover {
    background: #e03e00;
    transform: translateY(-2px);
}

.s1a1-btn-secondary {
    background: transparent;
    border: 2px solid var(--s1a1-gold);
    color: var(--s1a1-gold);
}

.s1a1-btn-secondary:hover {
    background: var(--s1a1-gold);
    color: var(--s1a1-bg-dark);
}

.s1a1-menu-toggle {
    background: none;
    border: none;
    color: var(--s1a1-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.s1a1-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--s1a1-bg-card);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.s1a1-mobile-menu.pro431-active {
    right: 0;
}

.s1a1-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.s1a1-menu-overlay.pro431-active {
    opacity: 1;
    visibility: visible;
}

.s1a1-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.s1a1-mobile-menu-title {
    font-size: 1.8rem;
    color: var(--s1a1-gold);
    font-weight: 700;
}

.s1a1-menu-close {
    background: none;
    border: none;
    color: var(--s1a1-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.s1a1-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.s1a1-mobile-nav li {
    margin-bottom: 0.5rem;
}

.s1a1-mobile-nav a {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--s1a1-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: var(--s1a1-radius);
    transition: all 0.3s ease;
}

.s1a1-mobile-nav a:hover {
    background: rgba(255, 69, 0, 0.2);
    color: var(--s1a1-accent);
}

/* Main Content */
.s1a1-main {
    padding-top: 70px;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .s1a1-main {
        padding-bottom: 80px;
    }
}

/* Hero/Slider Section */
.s1a1-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--s1a1-radius-lg) var(--s1a1-radius-lg);
}

.s1a1-slider {
    position: relative;
    height: 200px;
}

.s1a1-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.s1a1-slide.pro431-active {
    opacity: 1;
}

.s1a1-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s1a1-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.s1a1-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.s1a1-dot.pro431-active {
    background: var(--s1a1-accent);
    width: 24px;
    border-radius: 4px;
}

/* Section Styles */
.s1a1-section {
    padding: 2rem 0;
}

.s1a1-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s1a1-gold);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.s1a1-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--s1a1-accent);
    border-radius: 2px;
}

/* Game Grid */
.s1a1-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.s1a1-game-card {
    background: var(--s1a1-bg-card);
    border-radius: var(--s1a1-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s1a1-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.s1a1-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.s1a1-game-name {
    font-size: 1.1rem;
    color: var(--s1a1-text-light);
    text-align: center;
    padding: 0.6rem 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Tabs */
.s1a1-category-section {
    margin-bottom: 2rem;
}

.s1a1-category-title {
    font-size: 1.6rem;
    color: var(--s1a1-orange);
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--s1a1-accent);
}

/* Info Cards */
.s1a1-info-card {
    background: var(--s1a1-bg-card);
    border-radius: var(--s1a1-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.s1a1-info-card h3 {
    color: var(--s1a1-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.s1a1-info-card p {
    color: var(--s1a1-text-muted);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Feature List */
.s1a1-feature-list {
    list-style: none;
    padding: 0;
}

.s1a1-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.s1a1-feature-icon {
    color: var(--s1a1-accent);
    font-size: 2rem;
    flex-shrink: 0;
}

.s1a1-feature-text {
    font-size: 1.3rem;
    color: var(--s1a1-text-light);
}

/* CTA Button */
.s1a1-cta {
    text-align: center;
    padding: 2rem 0;
}

.s1a1-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--s1a1-accent), #ff6b35);
    color: var(--s1a1-text-light);
    font-size: 1.6rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.s1a1-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.4);
}

/* Footer */
.s1a1-footer {
    background: var(--s1a1-bg-card);
    padding: 2rem 0;
    margin-top: 2rem;
}

.s1a1-footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.s1a1-partner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.s1a1-partner-logo:hover {
    opacity: 1;
}

.s1a1-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
}

.s1a1-footer-link {
    color: var(--s1a1-text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.s1a1-footer-link:hover {
    color: var(--s1a1-accent);
}

.s1a1-footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    color: var(--s1a1-text-muted);
    font-size: 1.2rem;
}

/* Mobile Bottom Navigation */
.s1a1-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #1e2d3a 0%, #152028 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
}

@media (min-width: 769px) {
    .s1a1-bottom-nav {
        display: none;
    }
}

.s1a1-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.5rem;
}

.s1a1-nav-item:hover,
.s1a1-nav-item.active {
    background: rgba(255, 69, 0, 0.15);
}

.s1a1-nav-item.active .s1a1-nav-icon {
    color: var(--s1a1-accent);
}

.s1a1-nav-item.active .s1a1-nav-label {
    color: var(--s1a1-accent);
}

.s1a1-nav-icon {
    font-size: 24px;
    margin-bottom: 0.3rem;
    transition: transform 0.3s ease;
    color: var(--s1a1-text-muted);
}

.s1a1-nav-item:hover .s1a1-nav-icon {
    transform: scale(1.1);
    color: var(--s1a1-accent);
}

.s1a1-nav-label {
    font-size: 10px;
    color: var(--s1a1-text-muted);
    transition: color 0.3s ease;
}

.s1a1-nav-item:hover .s1a1-nav-label {
    color: var(--s1a1-text-light);
}

/* Promo Links */
.s1a1-promo-link {
    color: var(--s1a1-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.s1a1-promo-link:hover {
    color: var(--s1a1-orange);
    text-decoration: underline;
}

/* Toast Notification */
.pro431-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--s1a1-bg-card);
    color: var(--s1a1-text-light);
    padding: 1rem 2rem;
    border-radius: var(--s1a1-radius);
    box-shadow: var(--s1a1-shadow);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.pro431-toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Internal Links */
.s1a1-internal-link {
    color: var(--s1a1-orange);
    text-decoration: none;
    border-bottom: 1px dashed var(--s1a1-orange);
    transition: all 0.3s ease;
}

.s1a1-internal-link:hover {
    color: var(--s1a1-gold);
    border-bottom-color: var(--s1a1-gold);
}

/* RTP Section */
.s1a1-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.s1a1-rtp-item {
    background: var(--s1a1-bg-card);
    border-radius: var(--s1a1-radius);
    padding: 1rem;
    text-align: center;
}

.s1a1-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s1a1-gold);
}

.s1a1-rtp-label {
    font-size: 1.2rem;
    color: var(--s1a1-text-muted);
}

/* Responsive adjustments */
@media (max-width: 380px) {
    .s1a1-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .s1a1-btn {
        padding: 0.6rem 1rem;
        font-size: 1.2rem;
    }
}
