/**
 * Bet100 Apk - Main Stylesheet
 * All classes use prefix 'sd94-' for namespace isolation
 * Color Palette: #00CED1 | #00FFFF | #D3D3D3 | #FFFFFF | #34495E | #40E0D0
 * Mobile-first responsive design (max-width: 430px)
 */

/* CSS Variables */
:root {
    --sd94-primary: #00CED1;
    --sd94-secondary: #00FFFF;
    --sd94-accent: #40E0D0;
    --sd94-bg-dark: #34495E;
    --sd94-bg-darker: #2C3E50;
    --sd94-text-light: #FFFFFF;
    --sd94-text-gray: #D3D3D3;
    --sd94-gradient: linear-gradient(135deg, #00CED1, #40E0D0);
    --sd94-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
    --sd94-radius: 8px;
    --sd94-radius-lg: 12px;
}

/* Reset and Base Styles */
* {
    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(--sd94-bg-dark);
    color: var(--sd94-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    overflow-x: hidden;
}

a {
    color: var(--sd94-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sd94-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.sd94-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.sd94-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--sd94-bg-darker);
    padding: 1rem 0;
    box-shadow: var(--sd94-shadow);
    transition: all 0.3s ease;
}

.sd94-header-scrolled {
    background: rgba(44, 62, 80, 0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sd94-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 430px;
    margin: 0 auto;
}

.sd94-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sd94-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.sd94-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sd94-text-light);
    background: var(--sd94-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sd94-header-btns {
    display: flex;
    gap: 0.8rem;
}

.sd94-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--sd94-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.sd94-btn-primary {
    background: var(--sd94-gradient);
    color: var(--sd94-bg-dark);
}

.sd94-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--sd94-shadow);
}

.sd94-btn-secondary {
    background: transparent;
    color: var(--sd94-primary);
    border: 2px solid var(--sd94-primary);
}

.sd94-btn-secondary:hover {
    background: var(--sd94-primary);
    color: var(--sd94-bg-dark);
}

.sd94-menu-toggle {
    background: none;
    border: none;
    color: var(--sd94-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.sd94-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--sd94-bg-darker);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.sd94-menu-active {
    right: 0;
}

.sd94-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;
}

.sd94-overlay-active {
    opacity: 1;
    visibility: visible;
}

.sd94-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--sd94-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.sd94-nav-links {
    list-style: none;
    margin-top: 4rem;
}

.sd94-nav-links li {
    margin-bottom: 1.5rem;
}

.sd94-nav-links a {
    display: block;
    color: var(--sd94-text-light);
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: var(--sd94-radius);
    transition: all 0.3s ease;
}

.sd94-nav-links a:hover {
    background: var(--sd94-primary);
    color: var(--sd94-bg-dark);
}

/* Main Content */
main {
    padding-top: 70px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Carousel/Slider */
.sd94-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 var(--sd94-radius-lg) var(--sd94-radius-lg);
}

.sd94-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.sd94-slide-active {
    opacity: 1;
}

.sd94-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd94-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.sd94-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.sd94-dot-active {
    background: var(--sd94-primary);
    transform: scale(1.2);
}

/* Section Styles */
.sd94-section {
    padding: 2rem 1.5rem;
}

.sd94-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--sd94-text-light);
    text-align: center;
}

.sd94-section-title span {
    color: var(--sd94-primary);
}

/* Game Grid */
.sd94-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.sd94-game-card {
    background: var(--sd94-bg-darker);
    border-radius: var(--sd94-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sd94-game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sd94-shadow);
}

.sd94-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.sd94-game-name {
    font-size: 1rem;
    text-align: center;
    padding: 0.5rem;
    color: var(--sd94-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Tabs */
.sd94-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--sd94-primary);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--sd94-primary);
}

/* Info Cards */
.sd94-info-card {
    background: var(--sd94-bg-darker);
    border-radius: var(--sd94-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sd94-info-card h3 {
    font-size: 1.6rem;
    color: var(--sd94-primary);
    margin-bottom: 1rem;
}

.sd94-info-card p {
    color: var(--sd94-text-gray);
    line-height: 1.8rem;
    margin-bottom: 1rem;
}

.sd94-info-card ul {
    list-style: none;
    padding-left: 0;
}

.sd94-info-card li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--sd94-text-gray);
}

.sd94-info-card li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--sd94-primary);
    font-weight: bold;
}

/* Features Grid */
.sd94-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sd94-feature-item {
    background: var(--sd94-bg-darker);
    border-radius: var(--sd94-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sd94-feature-item:hover {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.2), rgba(64, 224, 208, 0.2));
}

.sd94-feature-icon {
    font-size: 2.4rem;
    color: var(--sd94-primary);
    margin-bottom: 0.8rem;
}

.sd94-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sd94-text-light);
    margin-bottom: 0.5rem;
}

.sd94-feature-desc {
    font-size: 1.1rem;
    color: var(--sd94-text-gray);
}

/* Promotional Link Styles */
.sd94-promo-text {
    color: var(--sd94-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sd94-promo-text:hover {
    color: var(--sd94-secondary);
    text-decoration: underline;
}

.sd94-promo-btn {
    display: inline-block;
    background: var(--sd94-gradient);
    color: var(--sd94-bg-dark);
    padding: 1rem 2rem;
    border-radius: var(--sd94-radius-lg);
    font-weight: 700;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.sd94-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--sd94-shadow);
}

/* Footer Styles */
.sd94-footer {
    background: var(--sd94-bg-darker);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.sd94-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sd94-footer-links a {
    color: var(--sd94-text-gray);
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: var(--sd94-radius);
    transition: all 0.3s ease;
}

.sd94-footer-links a:hover {
    color: var(--sd94-primary);
    background: rgba(0, 206, 209, 0.1);
}

.sd94-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.sd94-partners img {
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sd94-partners img:hover {
    opacity: 1;
}

.sd94-copyright {
    text-align: center;
    color: var(--sd94-text-gray);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

/* Bottom Navigation (Mobile Only) */
.sd94-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--sd94-bg-darker);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(0, 206, 209, 0.2);
}

@media (min-width: 769px) {
    .sd94-bottom-nav {
        display: none;
    }
}

.sd94-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 0.5rem;
}

.sd94-nav-item:hover {
    background: rgba(0, 206, 209, 0.15);
    transform: scale(1.05);
}

.sd94-nav-item.sd94-active {
    background: rgba(0, 206, 209, 0.2);
}

.sd94-nav-item i,
.sd94-nav-item .material-icons {
    font-size: 24px;
    color: var(--sd94-text-light);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.sd94-nav-item:hover i,
.sd94-nav-item:hover .material-icons {
    color: var(--sd94-primary);
}

.sd94-nav-item span {
    font-size: 10px;
    color: var(--sd94-text-gray);
    transition: color 0.3s ease;
}

.sd94-nav-item:hover span {
    color: var(--sd94-primary);
}

/* RTP Stats Section */
.sd94-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sd94-rtp-item {
    background: var(--sd94-bg-darker);
    border-radius: var(--sd94-radius);
    padding: 1rem;
    text-align: center;
}

.sd94-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sd94-primary);
}

.sd94-rtp-label {
    font-size: 1.1rem;
    color: var(--sd94-text-gray);
    margin-top: 0.3rem;
}

/* FAQ Accordion */
.sd94-faq-item {
    background: var(--sd94-bg-darker);
    border-radius: var(--sd94-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.sd94-faq-question {
    padding: 1.2rem;
    font-weight: 600;
    color: var(--sd94-text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd94-faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: var(--sd94-text-gray);
    line-height: 1.6;
}

/* Security Section */
.sd94-security-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--sd94-bg-darker);
    padding: 1rem;
    border-radius: var(--sd94-radius);
    margin-bottom: 0.8rem;
}

.sd94-security-badge i {
    font-size: 2rem;
    color: var(--sd94-primary);
}

.sd94-security-text {
    font-size: 1.2rem;
    color: var(--sd94-text-gray);
}

/* Achievement Cards */
.sd94-achievement {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--sd94-bg-darker);
    padding: 1rem;
    border-radius: var(--sd94-radius);
    margin-bottom: 0.8rem;
}

.sd94-achievement-icon {
    width: 40px;
    height: 40px;
    background: var(--sd94-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd94-bg-dark);
    font-weight: 700;
}

.sd94-achievement-title {
    font-size: 1.3rem;
    color: var(--sd94-text-light);
}

.sd94-achievement-desc {
    font-size: 1.1rem;
    color: var(--sd94-text-gray);
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .sd94-menu-toggle {
        display: none;
    }

    .sd94-header-content {
        max-width: 1200px;
    }

    .sd94-container {
        max-width: 1200px;
    }

    .sd94-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .sd94-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .sd94-carousel {
        height: 350px;
    }
}

/* Utility Classes */
.sd94-text-center {
    text-align: center;
}

.sd94-mt-2 {
    margin-top: 2rem;
}

.sd94-mb-2 {
    margin-bottom: 2rem;
}

.sd94-highlight {
    color: var(--sd94-primary);
    font-weight: 600;
}
