/**
 * NuStar Casino APK - Theme Stylesheet
 * Version: 1.0.0
 * Prefix: g956-
 * Color Palette: #708090 | #FFB3FF | #0C0C0C | #ADB5BD | #E91E63
 */

/* CSS Variables */
:root {
    --g956-primary: #E91E63;
    --g956-secondary: #FFB3FF;
    --g956-bg-dark: #0C0C0C;
    --g956-bg-card: #1a1a1a;
    --g956-text-light: #FFFFFF;
    --g956-text-muted: #ADB5BD;
    --g956-accent: #708090;
    --g956-gradient: linear-gradient(135deg, #E91E63 0%, #FFB3FF 100%);
    --g956-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    --g956-radius: 12px;
    --g956-radius-sm: 8px;
}

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

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--g956-bg-dark);
    color: var(--g956-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.g956-wrapper {
    padding: 1.5rem 0;
}

/* Header */
.g956-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.g956-header-scrolled {
    background: rgba(12, 12, 12, 0.98);
    box-shadow: var(--g956-shadow);
}

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

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

.g956-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.g956-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--g956-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g956-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g956-btn {
    padding: 0.6rem 1.2rem;
    border-radius: var(--g956-radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.g956-btn-primary {
    background: var(--g956-gradient);
    color: var(--g956-text-light);
}

.g956-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--g956-shadow);
}

.g956-btn-outline {
    background: transparent;
    color: var(--g956-secondary);
    border: 1px solid var(--g956-secondary);
}

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

.g956-menu-toggle {
    background: transparent;
    border: none;
    color: var(--g956-text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.g956-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--g956-bg-dark);
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(233, 30, 99, 0.3);
}

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

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

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

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

.g956-menu-nav li {
    margin-bottom: 0.8rem;
}

.g956-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--g956-text-light);
    border-radius: var(--g956-radius-sm);
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.g956-menu-nav a:hover {
    background: rgba(233, 30, 99, 0.2);
    color: var(--g956-secondary);
}

.g956-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;
}

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

/* Main Content */
main {
    padding-top: 60px;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 80px;
    }
}

/* Hero Carousel */
.g956-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--g956-radius);
    margin-bottom: 1.5rem;
}

.g956-slides {
    position: relative;
    height: 180px;
}

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

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

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

.g956-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.g956-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Section Titles */
.g956-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--g956-text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.g956-section-title i {
    color: var(--g956-primary);
}

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

.g956-game-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.g956-game-item:hover {
    transform: translateY(-3px);
}

.g956-game-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--g956-radius-sm);
    overflow: hidden;
    background: var(--g956-bg-card);
    margin-bottom: 0.4rem;
}

.g956-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.g956-game-name {
    font-size: 1rem;
    color: var(--g956-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.2rem;
}

/* Cards */
.g956-card {
    background: var(--g956-bg-card);
    border-radius: var(--g956-radius);
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.g956-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--g956-secondary);
}

.g956-card-text {
    color: var(--g956-text-muted);
    line-height: 1.6;
    font-size: 1.3rem;
}

/* Features List */
.g956-features {
    display: grid;
    gap: 1rem;
}

.g956-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--g956-radius-sm);
}

.g956-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--g956-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.g956-feature-icon i {
    color: var(--g956-text-light);
    font-size: 1.8rem;
}

.g956-feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--g956-text-light);
}

.g956-feature-content p {
    font-size: 1.1rem;
    color: var(--g956-text-muted);
}

/* Promotional CTA */
.g956-cta {
    background: var(--g956-gradient);
    border-radius: var(--g956-radius);
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.g956-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.g956-cta-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.g956-cta .g956-btn {
    background: var(--g956-bg-dark);
    color: var(--g956-primary);
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
}

/* Footer */
.g956-footer {
    background: #0a0a0a;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.g956-footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.g956-footer-brand p {
    color: var(--g956-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
}

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

.g956-footer-links a {
    color: var(--g956-secondary);
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 179, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.g956-footer-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.g956-footer-copyright {
    text-align: center;
    color: var(--g956-text-muted);
    font-size: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bottom Navigation */
.g956-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0C0C0C 100%);
    border-top: 2px solid var(--g956-primary);
    z-index: 1000;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
}

@media (min-width: 769px) {
    .g956-bottom-nav {
        display: none;
    }
}

.g956-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;
    border-radius: 8px;
    padding: 0.4rem;
}

.g956-nav-item:hover {
    background: rgba(233, 30, 99, 0.2);
}

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

.g956-nav-item i {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

.g956-nav-item span {
    font-size: 1rem;
    color: var(--g956-text-muted);
}

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

/* Testimonials */
.g956-testimonials {
    display: grid;
    gap: 1rem;
}

.g956-testimonial {
    background: var(--g956-bg-card);
    border-radius: var(--g956-radius);
    padding: 1.2rem;
    border-left: 3px solid var(--g956-primary);
}

.g956-testimonial-text {
    font-size: 1.2rem;
    color: var(--g956-text-muted);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.g956-testimonial-author {
    font-size: 1.1rem;
    color: var(--g956-secondary);
    font-weight: 600;
}

/* Payment Methods */
.g956-payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.g956-payment-item {
    background: var(--g956-bg-card);
    border-radius: var(--g956-radius-sm);
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.g956-payment-item i {
    font-size: 2.4rem;
    color: var(--g956-secondary);
    margin-bottom: 0.4rem;
}

.g956-payment-item span {
    font-size: 1rem;
    color: var(--g956-text-muted);
}

/* Winners Showcase */
.g956-winners {
    display: grid;
    gap: 0.8rem;
}

.g956-winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--g956-bg-card);
    padding: 1rem;
    border-radius: var(--g956-radius-sm);
}

.g956-winner-avatar {
    width: 40px;
    height: 40px;
    background: var(--g956-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.g956-winner-info {
    flex: 1;
}

.g956-winner-name {
    font-size: 1.2rem;
    color: var(--g956-text-light);
}

.g956-winner-game {
    font-size: 1rem;
    color: var(--g956-text-muted);
}

.g956-winner-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--g956-primary);
}

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

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

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

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

/* Utility Classes */
.g956-text-center { text-align: center; }
.g956-text-primary { color: var(--g956-primary); }
.g956-text-secondary { color: var(--g956-secondary); }
.g956-text-muted { color: var(--g956-text-muted); }
.g956-mb-1 { margin-bottom: 1rem; }
.g956-mb-2 { margin-bottom: 2rem; }
.g956-mt-1 { margin-top: 1rem; }
.g956-mt-2 { margin-top: 2rem; }

/* Responsive Adjustments */
@media (max-width: 380px) {
    .g956-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .g956-payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animation Classes */
@keyframes g956-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.g956-animate-pulse {
    animation: g956-pulse 2s infinite;
}

/* Category Badge */
.g956-category-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(233, 30, 99, 0.2);
    color: var(--g956-primary);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.g956-faq-item {
    background: var(--g956-bg-card);
    border-radius: var(--g956-radius-sm);
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.g956-faq-question {
    padding: 1.2rem;
    font-weight: 600;
    color: var(--g956-text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.g956-faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: var(--g956-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Tips List */
.g956-tips-list {
    list-style: none;
}

.g956-tips-list li {
    padding: 1rem;
    background: var(--g956-bg-card);
    border-radius: var(--g956-radius-sm);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.g956-tips-list li i {
    color: var(--g956-primary);
    font-size: 1.4rem;
    margin-top: 0.2rem;
}

/* Internal Links */
.g956-internal-link {
    color: var(--g956-secondary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.g956-internal-link:hover {
    color: var(--g956-primary);
}
