/**
 * Hanna Casino - CSS Stylesheet
 * Website: hannacasino.click
 * Prefix: se96-
 * Color Palette: #D2B48C | #FDF5E6 | #8B7355 | #273746
 */

/* CSS Variables */
:root {
    --se96-primary: #D2B48C;
    --se96-secondary: #8B7355;
    --se96-accent: #C4A76C;
    --se96-bg: #273746;
    --se96-bg-light: #2C4155;
    --se96-bg-dark: #1E2A36;
    --se96-text: #FDF5E6;
    --se96-text-muted: #C9BBA8;
    --se96-border: #3D5A73;
    --se96-success: #4CAF50;
    --se96-warning: #FFC107;
    --se96-danger: #F44336;
    --se96-gradient: linear-gradient(135deg, #D2B48C 0%, #8B7355 100%);
    --se96-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --se96-radius: 8px;
    --se96-radius-lg: 12px;
    --se96-transition: all 0.3s ease;
    --se96-vh: 1vh;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--se96-text);
    background-color: var(--se96-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--se96-primary);
    text-decoration: none;
    transition: var(--se96-transition);
}

a:hover {
    color: var(--se96-accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.se96-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.se96-wrapper {
    padding: 2rem 0;
}

/* Header */
.se96-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--se96-bg-dark);
    padding: 1rem;
    transition: var(--se96-transition);
    border-bottom: 1px solid var(--se96-border);
}

.se96-header-scrolled {
    background: rgba(30, 42, 54, 0.98);
    box-shadow: var(--se96-shadow);
}

.se96-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 430px;
    margin: 0 auto;
}

.se96-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.se96-logo img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.se96-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--se96-primary);
    letter-spacing: 0.5px;
}

.se96-header-actions {
    display: flex;
    gap: 0.8rem;
}

.se96-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: var(--se96-radius);
    cursor: pointer;
    transition: var(--se96-transition);
    border: none;
    min-height: 44px;
}

.se96-btn-primary {
    background: var(--se96-gradient);
    color: var(--se96-bg-dark);
}

.se96-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 180, 140, 0.4);
}

.se96-btn-outline {
    background: transparent;
    color: var(--se96-primary);
    border: 2px solid var(--se96-primary);
}

.se96-btn-outline:hover {
    background: var(--se96-primary);
    color: var(--se96-bg-dark);
}

.se96-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.8rem;
    cursor: pointer;
    background: transparent;
    border: none;
}

.se96-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--se96-primary);
    transition: var(--se96-transition);
}

/* Mobile Menu */
.se96-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--se96-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.se96-menu-active {
    right: 0;
}

.se96-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: var(--se96-transition);
}

.se96-overlay-active {
    opacity: 1;
    visibility: visible;
}

.se96-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--se96-border);
}

.se96-menu-close {
    font-size: 2.4rem;
    color: var(--se96-text);
    cursor: pointer;
    background: transparent;
    border: none;
}

.se96-menu-nav {
    list-style: none;
}

.se96-menu-nav li {
    margin-bottom: 1rem;
}

.se96-menu-nav a {
    display: block;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--se96-text);
    border-radius: var(--se96-radius);
    transition: var(--se96-transition);
}

.se96-menu-nav a:hover {
    background: var(--se96-bg-light);
    color: var(--se96-primary);
}

/* Hero Slider */
.se96-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--se96-radius-lg);
    margin-bottom: 2rem;
}

.se96-slides {
    position: relative;
    height: 200px;
}

.se96-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.se96-slide-active {
    opacity: 1;
}

.se96-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--se96-radius-lg);
}

.se96-slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.se96-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--se96-transition);
}

.se96-dot-active {
    background: var(--se96-primary);
    width: 20px;
    border-radius: 4px;
}

/* Sections */
.se96-section {
    padding: 2rem 0;
}

.se96-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--se96-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.se96-section-subtitle {
    font-size: 1.4rem;
    color: var(--se96-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* Game Grid */
.se96-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.se96-game-card {
    background: var(--se96-bg-light);
    border-radius: var(--se96-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--se96-transition);
}

.se96-game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--se96-shadow);
}

.se96-game-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.se96-game-name {
    font-size: 1.1rem;
    color: var(--se96-text);
    text-align: center;
    padding: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Tabs */
.se96-category {
    margin-bottom: 2rem;
}

.se96-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--se96-border);
}

.se96-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--se96-primary);
}

/* Features Grid */
.se96-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.se96-feature-card {
    background: var(--se96-bg-light);
    padding: 1.5rem;
    border-radius: var(--se96-radius);
    text-align: center;
    transition: var(--se96-transition);
}

.se96-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--se96-shadow);
}

.se96-feature-icon {
    font-size: 3rem;
    color: var(--se96-primary);
    margin-bottom: 1rem;
}

.se96-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--se96-text);
    margin-bottom: 0.5rem;
}

.se96-feature-desc {
    font-size: 1.2rem;
    color: var(--se96-text-muted);
}

/* Testimonials */
.se96-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.se96-testimonial {
    background: var(--se96-bg-light);
    padding: 1.5rem;
    border-radius: var(--se96-radius);
    border-left: 4px solid var(--se96-primary);
}

.se96-testimonial-text {
    font-size: 1.4rem;
    color: var(--se96-text);
    margin-bottom: 1rem;
    font-style: italic;
}

.se96-testimonial-author {
    font-size: 1.2rem;
    color: var(--se96-primary);
    font-weight: 600;
}

/* Payment Methods */
.se96-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.se96-payment-item {
    background: var(--se96-bg-light);
    padding: 1rem 1.5rem;
    border-radius: var(--se96-radius);
    font-size: 1.3rem;
    color: var(--se96-text);
}

/* CTA Section */
.se96-cta {
    background: var(--se96-gradient);
    padding: 2rem;
    border-radius: var(--se96-radius-lg);
    text-align: center;
    margin: 2rem 0;
}

.se96-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--se96-bg-dark);
    margin-bottom: 1rem;
}

.se96-cta-desc {
    font-size: 1.4rem;
    color: var(--se96-bg-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.se96-cta .se96-btn {
    background: var(--se96-bg-dark);
    color: var(--se96-primary);
}

/* Footer */
.se96-footer {
    background: var(--se96-bg-dark);
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--se96-border);
}

.se96-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.se96-footer-desc {
    font-size: 1.3rem;
    color: var(--se96-text-muted);
    margin-bottom: 1.5rem;
}

.se96-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.se96-footer-links a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: var(--se96-bg-light);
    border-radius: var(--se96-radius);
    color: var(--se96-text);
}

.se96-footer-links a:hover {
    background: var(--se96-primary);
    color: var(--se96-bg-dark);
}

.se96-footer-promo {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.se96-footer-promo .se96-btn {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
}

.se96-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--se96-text-muted);
    padding-top: 1.5rem;
    border-top: 1px solid var(--se96-border);
}

/* Bottom Navigation */
.se96-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--se96-bg-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid var(--se96-border);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.se96-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: var(--se96-transition);
    border-radius: 8px;
}

.se96-nav-item:hover {
    background: var(--se96-bg-light);
}

.se96-nav-item.active {
    color: var(--se96-primary);
}

.se96-nav-item .material-icons,
.se96-nav-item i {
    font-size: 24px;
    margin-bottom: 2px;
    transition: var(--se96-transition);
}

.se96-nav-item:hover .material-icons,
.se96-nav-item:hover i {
    transform: scale(1.1);
    color: var(--se96-primary);
}

.se96-nav-item span {
    font-size: 10px;
    color: var(--se96-text-muted);
    transition: var(--se96-transition);
}

.se96-nav-item:hover span,
.se96-nav-item.active span {
    color: var(--se96-primary);
}

/* Main content padding for bottom nav */
@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Hide bottom nav on desktop */
@media (min-width: 769px) {
    .se96-bottom-nav {
        display: none;
    }
}

/* Utility Classes */
.se96-text-center {
    text-align: center;
}

.se96-text-primary {
    color: var(--se96-primary);
}

.se96-mb-1 {
    margin-bottom: 1rem;
}

.se96-mb-2 {
    margin-bottom: 2rem;
}

.se96-mb-3 {
    margin-bottom: 3rem;
}

.se96-mt-2 {
    margin-top: 2rem;
}

.se96-hidden {
    display: none;
}

/* RTP Section */
.se96-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.se96-rtp-card {
    background: var(--se96-bg-light);
    padding: 1rem;
    border-radius: var(--se96-radius);
    text-align: center;
}

.se96-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--se96-primary);
}

.se96-rtp-label {
    font-size: 1.2rem;
    color: var(--se96-text-muted);
}

/* Winners Section */
.se96-winners {
    background: var(--se96-bg-light);
    border-radius: var(--se96-radius);
    overflow: hidden;
}

.se96-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--se96-border);
}

.se96-winner-item:last-child {
    border-bottom: none;
}

.se96-winner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.se96-winner-name {
    font-size: 1.3rem;
    color: var(--se96-text);
}

.se96-winner-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--se96-success);
}

/* FAQ Section */
.se96-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.se96-faq-item {
    background: var(--se96-bg-light);
    border-radius: var(--se96-radius);
    overflow: hidden;
}

.se96-faq-question {
    padding: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--se96-primary);
}

.se96-faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.3rem;
    color: var(--se96-text-muted);
}

/* Responsive */
@media (max-width: 430px) {
    .se96-game-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }

    .se96-game-name {
        font-size: 1rem;
    }
}
