/* ShineCryst - Luxury Elegant Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-gold: #b8941e;
    --cream: #faf7f2;
    --ivory: #fffff0;
    --charcoal: #2c2c2c;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border-color: #e8e8e8;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Age Verification */
.age-verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification-overlay.active {
    display: flex;
}

.age-verification-card {
    background: var(--white);
    padding: 60px;
    border-radius: 0;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gold);
    animation: luxuryFadeIn 0.6s ease;
}

@keyframes luxuryFadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-icon-luxury {
    font-size: 56px;
    color: var(--gold);
    margin-bottom: 25px;
}

.age-verification-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--charcoal);
    margin-bottom: 25px;
    font-weight: 700;
}

.age-verification-card p {
    color: var(--charcoal);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-requirement-text {
    font-weight: 700;
    color: var(--gold);
}

.age-disclaimer-text {
    background: var(--light-gray);
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
}

.age-button-group {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.age-confirm-btn,
.age-decline-btn {
    padding: 16px 35px;
    border: 2px solid var(--gold);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-confirm-btn {
    background: var(--gold);
    color: var(--white);
}

.age-confirm-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.age-decline-btn {
    background: var(--white);
    color: var(--charcoal);
}

.age-decline-btn:hover {
    background: var(--light-gray);
}

/* Navigation */
.main-navigation {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-nav-menu {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu ul {
    list-style: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 20px 40px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    background: var(--cream);
    color: var(--gold);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 650px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 80px 40px;
}

.hero-accent {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-heading {
    font-family: 'Cinzel', serif;
    font-size: 68px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 45px;
    line-height: 1.8;
}

.cta-luxury {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
}

.cta-luxury:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-container-wide {
    max-width: 100%;
    padding: 0 40px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title-block {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--charcoal);
    opacity: 0.8;
}

/* Introduction Section */
.introduction-section {
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.excellence-card {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.excellence-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.card-icon-luxury {
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 25px;
}

.excellence-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.excellence-card p {
    color: var(--charcoal);
    line-height: 1.8;
    opacity: 0.85;
}

/* Legal Notice */
.legal-notice-section {
    background: var(--cream);
}

.notice-luxury-box {
    background: var(--white);
    padding: 60px;
    border: 1px solid var(--gold);
}

.notice-luxury-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 50px;
    text-align: center;
}

.notice-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.notice-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.notice-column p {
    color: var(--charcoal);
    line-height: 1.8;
    opacity: 0.85;
}

/* Game Showcase */
.game-showcase-section {
    background: var(--white);
}

.game-display-frame {
    max-width: 1100px;
    margin: 0 auto;
    border: 2px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.game-embed-frame {
    width: 100%;
    height: 600px;
    border: none;
}

.game-action-area {
    text-align: center;
    margin-top: 50px;
}

.btn-elegant {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
}

.btn-elegant:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Features Luxury */
.features-luxury-section {
    background: var(--cream);
}

.luxury-features-list {
    max-width: 900px;
    margin: 0 auto;
}

.luxury-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding: 35px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.luxury-feature-item:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.feature-ornament {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    min-width: 50px;
}

.feature-details h4 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.feature-details p {
    color: var(--charcoal);
    line-height: 1.8;
    opacity: 0.85;
}

/* Final Invitation */
.final-invitation-section {
    background: var(--charcoal);
    color: var(--white);
}

.invitation-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.invitation-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.invitation-box p {
    font-size: 19px;
    margin-bottom: 45px;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-gold {
    display: inline-block;
    padding: 18px 55px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.cta-gold:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
}

/* Play Page */
.play-header-luxury {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-align: center;
}

.play-header-luxury h1 {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.play-header-luxury p {
    font-size: 22px;
    opacity: 0.9;
}

.gaming-info-section {
    padding: 80px 0;
    background: var(--white);
}

.info-luxury-container {
    background: var(--cream);
    padding: 60px;
}

.info-luxury-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 50px;
}

.info-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.info-luxury-box {
    background: var(--white);
    padding: 30px;
    border-left: 3px solid var(--gold);
}

.info-luxury-box h4 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.info-luxury-box p {
    color: var(--charcoal);
    line-height: 1.8;
}

.play-gaming-section {
    padding: 80px 0;
    background: var(--cream);
}

.gaming-frame-container {
    max-width: 1400px;
    margin: 0 auto;
    border: 2px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.gaming-iframe-full {
    width: 100%;
    height: 700px;
    border: none;
}

/* Legal Document Pages */
.legal-document-luxury {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
}

.legal-document-luxury h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.document-date {
    color: var(--charcoal);
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 50px;
}

.legal-text-content {
    background: var(--white);
    padding: 70px;
    border: 1px solid var(--border-color);
}

.legal-text-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 50px 0 25px;
}

.legal-text-content h2:first-child {
    margin-top: 0;
}

.legal-text-content p {
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.9;
}

.legal-text-content ul {
    margin: 25px 0;
    padding-left: 35px;
}

.legal-text-content li {
    color: var(--charcoal);
    line-height: 1.9;
    margin-bottom: 12px;
    opacity: 0.9;
}

.highlight-notice {
    background: var(--cream);
    padding: 40px;
    border-left: 4px solid var(--gold);
    margin-bottom: 50px;
}

.highlight-notice h2 {
    margin-top: 0 !important;
}

/* Footer */
.elegant-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-section p {
    color: var(--cream);
    line-height: 1.8;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
    opacity: 1;
}

.footer-closing {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .desktop-links {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .mobile-nav-menu.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .content-container,
    .content-container-wide {
        padding: 0 25px;
    }

    .hero-heading {
        font-size: 42px;
    }

    .section-title-block h2 {
        font-size: 36px;
    }

    .game-embed-frame {
        height: 400px;
    }

    .gaming-iframe-full {
        height: 500px;
    }

    .legal-text-content {
        padding: 40px 25px;
    }

    .notice-luxury-box {
        padding: 40px 25px;
    }

    .info-luxury-container {
        padding: 40px 25px;
    }

    .age-verification-card {
        margin: 25px;
        padding: 40px 25px;
    }

    .age-button-group {
        flex-direction: column;
    }

    .luxury-feature-item {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 32px;
    }

    .brand-logo span {
        font-size: 22px;
    }

    .game-embed-frame {
        height: 300px;
    }

    .gaming-iframe-full {
        height: 400px;
    }
}
