/**
 * Big Bunny Casino - Core Stylesheet
 * Prefix: s525-
 * Color Palette: #006400 | #FFB74D | #FF9800 | #262626 | #FFF176
 */

/* CSS Variables */
:root {
    --s525-primary: #006400;
    --s525-secondary: #FFB74D;
    --s525-accent: #FF9800;
    --s525-bg-dark: #262626;
    --s525-bg-light: #1a1a1a;
    --s525-text-light: #ffffff;
    --s525-text-muted: #b0b0b0;
    --s525-highlight: #FFF176;
    --s525-success: #4CAF50;
    --s525-border: #3a3a3a;
    --s525-gradient: linear-gradient(135deg, #006400 0%, #004d00 100%);
}

/* Base Reset */
* {
    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;
    font-size: 1.6rem;
    line-height: 1.5;
    background-color: var(--s525-bg-dark);
    color: var(--s525-text-light);
    min-height: 100vh;
}

/* Container */
.s525-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.s525-wrapper {
    padding: 2rem 0;
}

/* Header */
.s525-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--s525-bg-dark) 0%, rgba(38, 38, 38, 0.95) 100%);
    border-bottom: 2px solid var(--s525-primary);
    z-index: 1000;
    padding: 1rem 0;
}

.s525-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    max-width: 430px;
    margin: 0 auto;
}

.s525-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--s525-text-light);
}

.s525-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.s525-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--s525-secondary);
}

.s525-header-actions {
    display: flex;
    gap: 0.8rem;
}

.s525-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.s525-btn-primary {
    background: var(--s525-gradient);
    color: var(--s525-text-light);
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.3);
}

.s525-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 100, 0, 0.4);
}

.s525-btn-secondary {
    background: transparent;
    color: var(--s525-secondary);
    border: 2px solid var(--s525-secondary);
}

.s525-btn-secondary:hover {
    background: var(--s525-secondary);
    color: var(--s525-bg-dark);
}

.s525-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.s525-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--s525-secondary);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.s525-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--s525-bg-light);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.s525-menu-active {
    right: 0;
}

.s525-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;
}

.s525-overlay-active {
    opacity: 1;
    visibility: visible;
}

.s525-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--s525-border);
}

.s525-menu-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s525-border);
    border-radius: 50%;
    color: var(--s525-text-light);
    cursor: pointer;
    font-size: 2rem;
}

.s525-nav-list {
    list-style: none;
}

.s525-nav-item {
    margin-bottom: 0.5rem;
}

.s525-nav-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--s525-text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.s525-nav-link:hover {
    background: var(--s525-primary);
    color: var(--s525-text-light);
}

/* Main Content */
.s525-main {
    padding-top: 70px;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .s525-main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.s525-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.s525-slides {
    position: relative;
}

.s525-slide {
    display: none;
    width: 100%;
    cursor: pointer;
}

.s525-slide:first-child {
    display: block;
}

.s525-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.s525-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.s525-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s525-dot-active {
    background: var(--s525-secondary);
    transform: scale(1.2);
}

/* Sections */
.s525-section {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
}

.s525-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s525-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Game Grid */
.s525-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.s525-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.s525-game-item:hover {
    transform: scale(1.05);
}

.s525-game-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid var(--s525-border);
}

.s525-game-name {
    font-size: 1.1rem;
    color: var(--s525-text-light);
    text-align: center;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Tabs */
.s525-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--s525-highlight);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--s525-primary);
}

/* Cards */
.s525-card {
    background: var(--s525-bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--s525-border);
}

.s525-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--s525-secondary);
    margin-bottom: 1rem;
}

.s525-card-text {
    font-size: 1.4rem;
    color: var(--s525-text-muted);
    line-height: 1.6;
}

/* Promo Links */
.s525-promo-link {
    color: var(--s525-secondary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.s525-promo-link:hover {
    color: var(--s525-highlight);
}

.s525-promo-btn {
    display: inline-block;
    background: var(--s525-gradient);
    color: var(--s525-text-light);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s525-promo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 100, 0, 0.4);
}

/* Footer */
.s525-footer {
    background: var(--s525-bg-light);
    padding: 3rem 1.5rem 2rem;
    border-top: 2px solid var(--s525-primary);
}

.s525-footer-desc {
    font-size: 1.4rem;
    color: var(--s525-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.s525-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.s525-footer-link {
    color: var(--s525-secondary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.s525-footer-link:hover {
    color: var(--s525-highlight);
}

.s525-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.s525-partner-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.s525-partner-logo:hover {
    opacity: 1;
}

.s525-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--s525-text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid var(--s525-border);
}

/* Bottom Navigation */
.s525-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, var(--s525-bg-dark) 100%);
    border-top: 2px solid var(--s525-primary);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.8rem 0;
    height: 64px;
}

@media (min-width: 769px) {
    .s525-bottom-nav {
        display: none;
    }
}

.s525-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--s525-text-muted);
    min-width: 60px;
    min-height: 52px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.s525-nav-btn:hover,
.s525-nav-btn.active {
    color: var(--s525-secondary);
}

.s525-nav-btn i,
.s525-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 4px;
}

.s525-nav-btn span {
    font-size: 11px;
    font-weight: 500;
}

/* Touch Effects */
.s525-touch {
    transition: transform 0.1s ease;
}

.s525-touch-active {
    transform: scale(0.95);
}

/* Utilities */
.s525-text-center {
    text-align: center;
}

.s525-mb-1 {
    margin-bottom: 1rem;
}

.s525-mb-2 {
    margin-bottom: 2rem;
}

.s525-hidden {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 380px) {
    .s525-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .s525-game-icon {
        width: 60px;
        height: 60px;
    }

    .s525-game-name {
        font-size: 1rem;
    }
}

/* FAQ Accordion */
.s525-faq-item {
    background: var(--s525-bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--s525-border);
}

.s525-faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--s525-text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s525-faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--s525-text-muted);
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Feature List */
.s525-feature-list {
    list-style: none;
}

.s525-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: var(--s525-bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--s525-primary);
}

.s525-feature-icon {
    color: var(--s525-secondary);
    font-size: 2rem;
    flex-shrink: 0;
}

.s525-feature-content h4 {
    font-size: 1.5rem;
    color: var(--s525-text-light);
    margin-bottom: 0.5rem;
}

.s525-feature-content p {
    font-size: 1.3rem;
    color: var(--s525-text-muted);
    line-height: 1.5;
}

/* Stats Box */
.s525-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.s525-stat-item {
    background: var(--s525-bg-light);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--s525-border);
}

.s525-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--s525-secondary);
}

.s525-stat-label {
    font-size: 1.2rem;
    color: var(--s525-text-muted);
}
