/**
 * Nustar Casino App - Theme Stylesheet
 * Version: 1.0.0
 * All classes use prefix: g734-
 */

/* CSS Variables */
:root {
    --g734-primary: #CD5C5C;
    --g734-secondary: #48D1CC;
    --g734-accent: #F08080;
    --g734-bg-dark: #3A3A3A;
    --g734-bg-light: #F0F8FF;
    --g734-text-light: #F0F8FF;
    --g734-text-dark: #3A3A3A;
    --g734-gradient: linear-gradient(135deg, #CD5C5C 0%, #F08080 100%);
    --g734-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --g734-radius: 12px;
    --g734-radius-sm: 8px;
}

/* 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-color: var(--g734-bg-dark);
    color: var(--g734-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    min-height: 100vh;
}

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

/* Header */
.g734-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--g734-bg-dark) 0%, rgba(58, 58, 58, 0.95) 100%);
    padding: 0.8rem 1rem;
    transition: box-shadow 0.3s ease;
}

.g734-header.g734-scrolled {
    box-shadow: var(--g734-shadow);
}

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

.g734-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

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

.g734-logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--g734-secondary);
    white-space: nowrap;
}

.g734-header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

.g734-btn-primary {
    background: var(--g734-gradient);
    color: white;
}

.g734-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 92, 92, 0.4);
}

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

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

/* Hamburger Menu */
.g734-hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.g734-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--g734-secondary);
    transition: all 0.3s ease;
}

.g734-hamburger.g734-active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.g734-hamburger.g734-active span:nth-child(2) {
    opacity: 0;
}

.g734-hamburger.g734-active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.g734-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 58, 58, 0.98);
    z-index: 9999;
    padding: 6rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.g734-mobile-menu.g734-active {
    transform: translateX(0);
}

.g734-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.g734-nav-item {
    border-bottom: 1px solid rgba(72, 209, 204, 0.2);
}

.g734-nav-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--g734-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.g734-nav-link:hover {
    color: var(--g734-secondary);
}

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

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

/* Carousel/Slider */
.g734-carousel {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: var(--g734-radius);
}

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

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

.g734-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Titles */
.g734-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--g734-secondary);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--g734-primary);
}

.g734-section-title i {
    margin-right: 0.5rem;
}

/* Game Grid */
.g734-game-section {
    margin-bottom: 2rem;
}

.g734-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.g734-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--g734-radius-sm);
    padding: 0.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(72, 209, 204, 0.1);
}

.g734-game-card:hover {
    transform: translateY(-3px);
    background: rgba(72, 209, 204, 0.1);
    border-color: var(--g734-secondary);
}

.g734-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.4rem;
}

.g734-game-name {
    font-size: 1.1rem;
    color: var(--g734-text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Content Sections */
.g734-content-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--g734-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(72, 209, 204, 0.1);
}

.g734-content-section h2 {
    color: var(--g734-secondary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.g734-content-section p {
    color: var(--g734-text-light);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.g734-content-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.g734-content-section li {
    color: var(--g734-text-light);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Promo Link Styles */
.g734-promo-link {
    color: var(--g734-secondary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.g734-promo-link:hover {
    color: var(--g734-accent);
    text-decoration: underline;
}

/* Stats Grid */
.g734-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.g734-stat-card {
    background: rgba(205, 92, 92, 0.1);
    border-radius: var(--g734-radius-sm);
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(205, 92, 92, 0.2);
}

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

.g734-stat-label {
    font-size: 1.1rem;
    color: var(--g734-text-light);
    opacity: 0.8;
}

/* Testimonials */
.g734-testimonial {
    background: rgba(72, 209, 204, 0.1);
    border-radius: var(--g734-radius-sm);
    padding: 1rem;
    margin: 0.8rem 0;
    border-left: 3px solid var(--g734-secondary);
}

.g734-testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* Payment Methods */
.g734-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
}

.g734-payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: var(--g734-radius-sm);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Winners Showcase */
.g734-winner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--g734-radius-sm);
    margin-bottom: 0.5rem;
}

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

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

/* Footer */
.g734-footer {
    background: rgba(58, 58, 58, 0.95);
    padding: 2rem 1rem 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(72, 209, 204, 0.2);
}

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

.g734-footer-brand p {
    font-size: 1.2rem;
    color: var(--g734-text-light);
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 0.5rem;
}

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

.g734-footer-link {
    color: var(--g734-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--g734-radius-sm);
    transition: background 0.3s ease;
}

.g734-footer-link:hover {
    background: rgba(72, 209, 204, 0.1);
}

.g734-copyright {
    text-align: center;
    font-size: 1.1rem;
    color: var(--g734-text-light);
    opacity: 0.6;
    margin-top: 1.5rem;
}

/* Bottom Navigation */
.g734-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.98) 0%, var(--g734-bg-dark) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 1px solid rgba(72, 209, 204, 0.2);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}

.g734-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(--g734-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.2rem;
}

.g734-nav-btn:hover,
.g734-nav-btn.g734-active {
    color: var(--g734-secondary);
}

.g734-nav-btn i,
.g734-nav-btn .material-icons {
    font-size: 22px;
}

.g734-nav-btn span {
    font-size: 1rem;
    font-weight: 500;
}

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

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

.g734-cta-banner h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.5rem;
}

.g734-cta-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* FAQ Section */
.g734-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--g734-radius-sm);
    padding: 1rem;
    margin-bottom: 0.8rem;
}

.g734-faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--g734-secondary);
    margin-bottom: 0.5rem;
}

.g734-faq-answer {
    font-size: 1.2rem;
    color: var(--g734-text-light);
    line-height: 1.6;
}

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

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

    .g734-section-title {
        font-size: 1.6rem;
    }
}

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