/* Vegas Casino APK - Premium Luxury Theme CSS */
/* Theme Colors */
:root {
    --midnight-black: #0B0B0B;
    --steel-gray: #2E2E2E;
    --royal-blue: #0033A0;
    --emerald-green: #006400;
    --gold-accent: #FFD700;
    --ivory-white: #F5F5F5;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, var(--royal-blue) 0%, var(--emerald-green) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-accent) 0%, #FFA500 100%);
    --shadow-premium: 0 10px 30px rgba(0, 51, 160, 0.3);
    --shadow-gold: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--ivory-white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--midnight-black);
}

h1 {
    font-size: 3rem;
    color: #FFD700;
}

h2 {
    font-size: 2.5rem;
    color: var(--royal-blue);
}

h3 {
    font-size: 1.8rem;
    color: var(--steel-gray);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.4);
}

.btn-secondary {
    background: var(--gradient-gold);
    color: var(--midnight-black);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

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

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    background: var(--midnight-black);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--steel-gray);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item::after {
    content: '/';
    color: var(--gold-accent);
    margin-left: 0.5rem;
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--gold-accent);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--steel-gray) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(11, 11, 11, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--steel-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid - Centered Layout */
.content-grid {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    padding: 2rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--royal-blue);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

/* Registration Section */
.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration-text {
    padding: 2rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.registration-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--emerald-green);
}

.advantage-item h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--text-light);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--ivory-white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--royal-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

.cta-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--midnight-black);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--steel-gray);
    color: var(--text-light);
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--midnight-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

/* Responsive Images */
.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--midnight-black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .content-grid,
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .feature-card,
    .advantage-item,
    .registration-text,
    .content-text {
        padding: 1.5rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
.back-to-top:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* Additional Styles for New Pages */

/* Page Header Styles */
.page-header {
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 0 3rem;
}

.page-header .section-title {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-header .section-subtitle {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.2rem;
}

.last-updated {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Policy Content Styles */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: var(--royal-blue);
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    color: var(--emerald-green);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

/* Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--emerald-green);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

/* Support Page Styles */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--royal-blue);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-icon {
    margin-bottom: 1rem;
}

.support-card h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: var(--steel-gray);
}

/* FAQ Categories */
.faq-categories {
    margin-top: 2rem;
}

.faq-category {
    margin-bottom: 3rem;
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-category h3 {
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 0.5rem;
}

/* Contact Info Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--emerald-green);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-item h4 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: var(--steel-gray);
}

/* Support Hours */
.support-hours {
    background: var(--ivory-white);
}

.hours-content {
    text-align: center;
}

.hours-content h2 {
    color: var(--royal-blue);
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.hours-item {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hours-item h4 {
    color: var(--emerald-green);
    margin-bottom: 0.5rem;
}

/* 404 Error Page Styles */
.error-404 {
    padding: 4rem 0;
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-visual {
    margin-bottom: 3rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--royal-blue);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.error-title {
    color: var(--midnight-black);
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    color: var(--steel-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-suggestions {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: left;
}

.error-suggestions h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
    text-align: center;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.error-suggestions li::before {
    content: '✓';
    color: var(--emerald-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Popular Pages Grid */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.page-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.page-icon {
    margin-bottom: 1rem;
}

.page-card h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.page-card p {
    color: var(--steel-gray);
    margin-bottom: 1.5rem;
}

/* Search Section */
.search-section {
    background: var(--ivory-white);
}

.search-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-content h2 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.search-content p {
    color: var(--steel-gray);
    margin-bottom: 2rem;
}

.search-box {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--steel-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--royal-blue);
}

/* Breadcrumb Current */
.breadcrumb-current {
    color: var(--gold-accent);
}

/* Responsive Adjustments for New Pages */
@media (max-width: 768px) {
    .policy-section {
        padding: 1.5rem;
    }
    
    .values-grid,
    .support-grid,
    .contact-grid,
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 4rem;
    }
    
    .policy-section {
        padding: 1rem;
    }
    
    .support-card,
    .contact-item,
    .page-card {
        padding: 1.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .back-to-top,
    .hero-cta,
    .cta-section {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    .hero {
        background: white;
        color: black;
    }
}
