/**
 * nustar casino apk - Main Stylesheet
 * All classes use wc601- prefix for namespace isolation
 * Mobile-first responsive design
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --wc601-primary: #F4A460;
    --wc601-secondary: #495057;
    --wc601-accent: #6F4E37;
    --wc601-bg-dark: #0F0F23;
    --wc601-bg-light: #FFDEAD;
    --wc601-text-light: #FFDEAD;
    --wc601-text-dark: #0F0F23;
    --wc601-gradient: linear-gradient(135deg, #0F0F23 0%, #6F4E37 100%);
    --wc601-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --wc601-radius: 8px;
    --wc601-transition: all 0.3s ease;
}

/* Reset and Base */
* {
    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;
    background: var(--wc601-bg-dark);
    color: var(--wc601-text-light);
    line-height: 1.5;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.wc601-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.wc601-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.98) 0%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 164, 96, 0.2);
    transition: var(--wc601-transition);
}

.wc601-header-scrolled {
    background: rgba(15, 15, 35, 0.99);
    box-shadow: var(--wc601-shadow);
}

.wc601-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.wc601-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wc601-logo img {
    width: 32px;
    height: 32px;
}

.wc601-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wc601-primary);
}

.wc601-header-actions {
    display: flex;
    gap: 0.8rem;
}

.wc601-btn {
    padding: 0.8rem 1.6rem;
    border-radius: var(--wc601-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wc601-transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wc601-btn-primary {
    background: var(--wc601-primary);
    color: var(--wc601-text-dark);
}

.wc601-btn-primary:hover {
    background: #e8944f;
    transform: translateY(-2px);
}

.wc601-btn-secondary {
    background: transparent;
    color: var(--wc601-primary);
    border: 2px solid var(--wc601-primary);
}

.wc601-btn-secondary:hover {
    background: var(--wc601-primary);
    color: var(--wc601-text-dark);
}

.wc601-menu-toggle {
    background: transparent;
    border: none;
    color: var(--wc601-primary);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.wc601-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--wc601-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
    border-left: 1px solid rgba(244, 164, 96, 0.3);
}

.pro145-menu-active {
    right: 0 !important;
}

.wc601-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: var(--wc601-transition);
}

.pro145-overlay-active {
    opacity: 1 !important;
    visibility: visible !important;
}

.wc601-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(244, 164, 96, 0.3);
}

.wc601-menu-close {
    background: transparent;
    border: none;
    color: var(--wc601-primary);
    font-size: 2.4rem;
    cursor: pointer;
}

.wc601-nav-list {
    list-style: none;
}

.wc601-nav-item {
    margin-bottom: 0.5rem;
}

.wc601-nav-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--wc601-text-light);
    font-size: 1.4rem;
    border-radius: var(--wc601-radius);
    transition: var(--wc601-transition);
}

.wc601-nav-link:hover {
    background: rgba(244, 164, 96, 0.1);
    color: var(--wc601-primary);
}

/* Main Content */
main {
    padding-top: 70px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Carousel */
.wc601-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.wc601-slides {
    position: relative;
}

.pro145-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.pro145-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.wc601-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.pro145-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 222, 173, 0.5);
    cursor: pointer;
    transition: var(--wc601-transition);
}

.pro145-dot-active {
    background: var(--wc601-primary);
    transform: scale(1.2);
}

/* Section Styles */
.wc601-section {
    padding: 2.5rem 1.5rem;
}

.wc601-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wc601-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.wc601-section-subtitle {
    font-size: 1.4rem;
    color: var(--wc601-text-light);
    opacity: 0.8;
    text-align: center;
    margin-bottom: 2rem;
}

/* Game Grid */
.wc601-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.wc601-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--wc601-transition);
    padding: 0.5rem;
    border-radius: var(--wc601-radius);
}

.wc601-game-item:hover {
    background: rgba(244, 164, 96, 0.1);
    transform: translateY(-3px);
}

.wc601-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--wc601-radius);
    margin-bottom: 0.5rem;
    object-fit: cover;
}

.wc601-game-name {
    font-size: 1rem;
    color: var(--wc601-text-light);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Title */
.wc601-category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--wc601-primary);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--wc601-primary);
}

/* Content Cards */
.wc601-card {
    background: rgba(111, 78, 55, 0.2);
    border-radius: var(--wc601-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 164, 96, 0.2);
}

.wc601-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--wc601-primary);
    margin-bottom: 1rem;
}

.wc601-card-text {
    font-size: 1.3rem;
    color: var(--wc601-text-light);
    line-height: 1.6;
}

/* Feature List */
.wc601-feature-list {
    list-style: none;
}

.wc601-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.wc601-feature-icon {
    color: var(--wc601-primary);
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* FAQ Section */
.wc601-faq-item {
    background: rgba(111, 78, 55, 0.15);
    border-radius: var(--wc601-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.wc601-faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wc601-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wc601-faq-answer {
    padding: 0 1.5rem 1.2rem;
    font-size: 1.2rem;
    color: var(--wc601-text-light);
    line-height: 1.6;
}

/* Footer */
.wc601-footer {
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(111, 78, 55, 0.3) 100%);
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(244, 164, 96, 0.2);
}

.wc601-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.wc601-footer-link {
    font-size: 1.2rem;
    color: var(--wc601-text-light);
    transition: var(--wc601-transition);
}

.wc601-footer-link:hover {
    color: var(--wc601-primary);
}

.wc601-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wc601-partner-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--wc601-transition);
}

.wc601-partner-img:hover {
    opacity: 1;
}

.wc601-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--wc601-text-light);
    opacity: 0.7;
}

/* Bottom Navigation */
.wc601-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.98) 0%, rgba(15, 15, 35, 1) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(244, 164, 96, 0.3);
}

@media (min-width: 769px) {
    .wc601-bottom-nav {
        display: none;
    }
}

.wc601-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    background: transparent;
    border: none;
    color: var(--wc601-text-light);
    cursor: pointer;
    transition: var(--wc601-transition);
    padding: 0.5rem;
}

.wc601-nav-btn:hover,
.wc601-nav-btn.active {
    color: var(--wc601-primary);
    transform: scale(1.1);
}

.wc601-nav-btn i,
.wc601-nav-btn .material-icons {
    font-size: 24px;
    margin-bottom: 0.3rem;
}

.wc601-nav-btn span {
    font-size: 10px;
    font-weight: 500;
}

/* Promotional Links */
.wc601-promo-text {
    color: var(--wc601-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--wc601-transition);
}

.wc601-promo-text:hover {
    text-decoration: underline;
}

.wc601-promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--wc601-primary) 0%, #e8944f 100%);
    color: var(--wc601-text-dark);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--wc601-transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

.wc601-promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

/* Utility Classes */
.wc601-text-center {
    text-align: center;
}

.wc601-mt-2 {
    margin-top: 2rem;
}

.wc601-mb-2 {
    margin-bottom: 2rem;
}

.wc601-hidden-mobile {
    display: none;
}

@media (min-width: 769px) {
    .wc601-hidden-mobile {
        display: block;
    }

    .wc601-container {
        max-width: 768px;
    }
}
