/* Import Google Fonts - More Readable */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Root Variables for Colors */
:root {
    --royal-gold: #E8B923;
    --noble-blue: #243B55;
    --healing-green: #4CAF50;
    --mystic-silver: #C0C0C0;
    --neutral-white: #F5F5F5;
    --dark-gray: #333333;
    --light-gray: #666666;
    --danger-red: #dc3545;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Body Styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--noble-blue);
    color: var(--neutral-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--royal-gold);
    font-weight: 600;
    line-height: 1.2;
}

/* Links */
a {
    color: var(--healing-green);
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    color: var(--royal-gold);
}

/* Buttons */
button {
    font-family: 'Inter', sans-serif;
    background: var(--royal-gold);
    color: var(--noble-blue);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

button:hover {
    background: var(--healing-green);
    color: var(--neutral-white);
}

/* Navbar Styling */
.crown-cure-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: linear-gradient(135deg, var(--noble-blue), var(--royal-gold));
    display: flex;
    align-items: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    animation: navbarGlow 5s infinite alternate ease-in-out;
    padding: 0 20px;
}

/* Logo Styling */
.crown-cure-navbar-logo img {
    height: 90px;
    animation: logoSpin 10s infinite linear;
    flex-shrink: 0;
}

/* Scrollable Container */
.crown-cure-navbar-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 20px;
    white-space: nowrap;
    margin-left: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.crown-cure-navbar-container::-webkit-scrollbar {
    display: none;
}

/* Scroll Arrow Indicator */
.crown-cure-navbar-scroll-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, var(--royal-gold));
    color: var(--noble-blue);
    width: 40px;
    height: 100%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
    animation: arrowPulse 2s infinite ease-in-out;
    border-radius: 0 10px 10px 0;
}

/* Alternative: Use ::after pseudo-element if you don't want to add HTML */
.crown-cure-navbar-container::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, var(--royal-gold));
    color: var(--noble-blue);
    width: 40px;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    pointer-events: none;
    z-index: 10;
    animation: arrowPulse 2s infinite ease-in-out;
    border-radius: 0 10px 10px 0;
}

/* 
To use this, add to your HTML inside navbar-container:
<div class="crown-cure-navbar-scroll-arrow">→</div>

Or use the ::after pseudo-element (no HTML needed)
*/

/* Arrow pulse animation */
@keyframes arrowPulse {
    0%, 100% { 
        transform: translateY(-50%) translateX(0px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-50%) translateX(3px);
        opacity: 1;
    }
}

/* Pillar Button */
.crown-cure-navbar-pillar {
    background: radial-gradient(circle, var(--mystic-silver) 20%, var(--royal-gold) 90%);
    width: 110px;
    height: 110px;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--noble-blue);
    position: relative;
    flex-shrink: 0;
}

/* Pillar Hover Effect */
.crown-cure-navbar-pillar:hover {
    transform: rotateY(20deg) scale(1.1);
    box-shadow: 0px 0px 25px var(--healing-green);
}

/* Glow Animation */
@keyframes navbarGlow {
    0% { box-shadow: 0px 0px 10px var(--royal-gold); }
    100% { box-shadow: 0px 0px 25px var(--healing-green); }
}

/* Logo Spin Animation */
@keyframes logoSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Icons */
.crown-cure-navbar-icon {
    font-size: 24px;
    margin-bottom: 5px;
    transition: transform 0.3s ease-in-out;
}

/* Icon Reflection */
.crown-cure-navbar-pillar:hover .crown-cure-navbar-icon {
    transform: scale(1.2);
    filter: drop-shadow(0px 0px 10px var(--mystic-silver));
}

.crown-cure-navbar-container a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.crown-cure-navbar-container a:hover {
    transform: scale(1.1);
    text-shadow: 0px 0px 10px var(--royal-gold);
}

/* Hero Section Styling */
.crown-cure-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('hero-bg.png') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Dark Overlay */
.crown-cure-hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    max-width: 750px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.5s ease-in-out;
}

/* Hero Title */
.crown-cure-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Business Summary */
.crown-cure-hero-summary {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-white);
    margin: 20px auto;
    max-width: 600px;
    line-height: 1.6;
}

/* CTA Button */
.crown-cure-hero-button {
    font-family: 'Inter', sans-serif;
    background: var(--royal-gold);
    color: var(--noble-blue);
    padding: 15px 30px;
    font-size: 1.3rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    font-weight: 600;
}

/* Button Hover Effect */
.crown-cure-hero-button:hover {
    background: var(--healing-green);
    color: var(--neutral-white);
    transform: scale(1.1);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section Styling */
.crown-cure-features {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.crown-cure-features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.4);
    margin-bottom: 50px;
}

/* Features Grid */
.crown-cure-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Feature Cards */
.crown-cure-features-card {
    background: linear-gradient(135deg, var(--royal-gold), var(--mystic-silver));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}

/* Hover Effect */
.crown-cure-features-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px var(--healing-green);
}

/* Icons */
.crown-cure-features-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    color: var(--noble-blue);
}

/* Feature Title */
.crown-cure-features-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--noble-blue);
}

/* Feature Description */
.crown-cure-features-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--neutral-white);
    margin-top: 10px;
}

/* About Games Section */
.crown-cure-about-games {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.crown-cure-about-games-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 50px;
}

/* Container */
.crown-cure-about-games-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* Game Item */
.crown-cure-about-games-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Game Text */
.crown-cure-about-games-text {
    flex: 1;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.crown-cure-about-games-text h3 {
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.crown-cure-about-games-text p {
    font-size: 1.2rem;
    color: var(--neutral-white);
}

/* Game Image */
.crown-cure-about-games-image {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.crown-cure-about-games-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Images */
.crown-cure-about-games-image img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Hover Effect on Game Section */
.crown-cure-about-games-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mystic Trials Section */
.crown-cure-trials {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.crown-cure-trials-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

/* Section Description */
.crown-cure-trials-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Trials Container */
.crown-cure-trials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Individual Trial */
.crown-cure-trial {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    padding: 20px;
    max-width: 700px;
    width: 100%;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Trial Hover Effect */
.crown-cure-trial:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(255, 0, 0, 0.6);
}

/* Trial Title */
.crown-cure-trial h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--neutral-white);
    margin-bottom: 10px;
}

/* Trial Description */
.crown-cure-trial p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

/* Impossible Quest Highlight */
.crown-cure-trial:nth-child(odd) {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 0, 0, 0.8));
}

/* Play Games Section */
.crown-cure-play-games {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.crown-cure-play-games-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

/* Section Description */
.crown-cure-play-games-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Play Games Container */
.crown-cure-play-games-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* Individual Game Item */
.crown-cure-play-games-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Game Text */
.crown-cure-play-games-text {
    flex: 1;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.crown-cure-play-games-text h3 {
    font-size: 1.8rem;
    color: var(--mystic-silver);
    margin-bottom: 10px;
}

.crown-cure-play-games-text p {
    font-size: 1.2rem;
    color: var(--neutral-white);
    margin-bottom: 15px;
}

/* Game Image */
.crown-cure-play-games-image {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.crown-cure-play-games-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Images */
.crown-cure-play-games-image img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Play Now Button */
.crown-cure-play-games-btn {
    display: inline-block;
    background: var(--mystic-silver);
    color: var(--neutral-white);
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Button Hover Effect */
.crown-cure-play-games-btn:hover {
    background: var(--healing-green);
    transform: scale(1.1);
}

/* Footer Section */
.crown-cure-footer {
    background: linear-gradient(to bottom, var(--noble-blue), var(--royal-gold));
    padding: 60px 20px;
    text-align: center;
    color: var(--neutral-white);
    position: relative;
}

/* 18+ Disclaimer */
.crown-cure-footer-disclaimer {
    background: var(--danger-red);
    color: var(--neutral-white);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

/* Disclaimer Icon Animation */
.crown-cure-footer-disclaimer-icon {
    font-size: 1.8rem;
    animation: rotate-glow 3s infinite linear;
}

/* Red Text for Disclaimer */
.crown-cure-footer-disclaimer p {
    color: #ff4d4d;
    font-weight: bold;
}

/* Business Summary */
.crown-cure-footer-summary {
    max-width: 600px;
    margin: 0 auto;
}

.crown-cure-footer-summary h3 {
    font-size: 1.5rem;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.crown-cure-footer-summary p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Image Gallery */
.crown-cure-footer-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Image Animations */
.crown-cure-footer-gallery img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease;
    animation: float-img 4s infinite ease-in-out;
}

/* Hover Effects */
.crown-cure-footer-gallery img:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.6);
}

/* Developed By */
.crown-cure-footer-developer {
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg) scale(1); filter: drop-shadow(0 0 5px red); }
    50% { transform: rotate(180deg) scale(1.2); filter: drop-shadow(0 0 15px red); }
    100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 5px red); }
}

@keyframes float-img {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* About Page Section */
.crown-cure-about-page {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
}

.crown-cure-about-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.crown-cure-about-page-title:hover {
    transform: scale(1.1);
    text-shadow: 0px 0px 15px var(--healing-green);
}

.crown-cure-about-page-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crown-cure-about-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

.crown-cure-about-page-item {
    background: linear-gradient(135deg, var(--noble-blue), var(--royal-gold));
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    width: 100%;
}

.crown-cure-about-page-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px var(--healing-green);
    background: linear-gradient(135deg, var(--royal-gold), var(--noble-blue));
}

.crown-cure-about-page-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--neutral-white);
    margin-bottom: 10px;
}

.crown-cure-about-page-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--neutral-white);
    margin-bottom: 10px;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
.crown-cure-contact {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
}

.crown-cure-contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.crown-cure-contact-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--neutral-white);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crown-cure-contact-form {
    max-width: 600px;
    margin: auto;
    padding: 30px;
    background: var(--noble-blue);
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}

.crown-cure-contact-group {
    margin-bottom: 20px;
    text-align: left;
}

.crown-cure-contact-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--royal-gold);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.crown-cure-contact-group input,
.crown-cure-contact-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--dark-gray);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-in-out;
    font-family: 'Inter', sans-serif;
}

.crown-cure-contact-group input:focus,
.crown-cure-contact-group textarea:focus {
    background: #fff;
    outline: none;
    box-shadow: 0px 0px 10px var(--royal-gold);
}

.crown-cure-contact-button {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    background: var(--royal-gold);
    color: var(--neutral-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.crown-cure-contact-button:hover {
    background: var(--healing-green);
    transform: scale(1.05);
}

/* Policy Pages Common Styles */
.crown-cure-rsg,
.crown-cure-privacy,
.crown-cure-terms,
.crown-cure-optout {
    background: var(--noble-blue);
    padding: 80px 20px;
    text-align: center;
    color: var(--neutral-white);
}

.crown-cure-rsg-title,
.crown-cure-privacy-title,
.crown-cure-terms-title,
.crown-cure-optout-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--royal-gold);
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.crown-cure-rsg-date,
.crown-cure-privacy-date,
.crown-cure-terms-date {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.crown-cure-rsg-content,
.crown-cure-privacy-content,
.crown-cure-terms-content,
.crown-cure-optout-content {
    max-width: 900px;
    margin: auto;
    text-align: left;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.crown-cure-rsg-content h3,
.crown-cure-privacy-content h3,
.crown-cure-terms-content h3,
.crown-cure-optout-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-top: 30px;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.4);
}

.crown-cure-rsg-content h4,
.crown-cure-privacy-content h4,
.crown-cure-terms-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--healing-green);
    margin-top: 20px;
}

.crown-cure-rsg-content p,
.crown-cure-privacy-content p,
.crown-cure-terms-content p,
.crown-cure-optout-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--neutral-white);
    margin-bottom: 15px;
}

.crown-cure-rsg-content ul,
.crown-cure-privacy-content ul,
.crown-cure-terms-content ul {
    margin-left: 20px;
    list-style-type: disc;
    color: var(--neutral-white);
    font-family: 'Inter', sans-serif;
}

.crown-cure-rsg-content a,
.crown-cure-privacy-content a,
.crown-cure-terms-content a,
.crown-cure-optout-content a {
    color: var(--royal-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.crown-cure-rsg-content a:hover,
.crown-cure-privacy-content a:hover,
.crown-cure-terms-content a:hover,
.crown-cure-optout-content a:hover {
    color: var(--healing-green);
    text-shadow: 0px 0px 8px var(--healing-green);
}

.crown-cure-optout-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Age Verification Pop-up */
.crown-cure-age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.crown-cure-age-popup {
    background: var(--noble-blue);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s ease-in-out;
    max-width: 500px;
    width: 100%;
}

.crown-cure-age-popup h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--royal-gold);
    margin-bottom: 10px;
}

.crown-cure-age-popup p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--neutral-white);
    margin-bottom: 15px;
}

.crown-cure-age-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--neutral-white);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.crown-cure-age-checkbox input {
    margin-right: 8px;
    transform: scale(1.2);
}

.crown-cure-age-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

#crown-cure-age-yes,
#crown-cure-age-no {
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

#crown-cure-age-yes {
    background: var(--healing-green);
    color: white;
}

#crown-cure-age-yes:hover {
    background: var(--royal-gold);
    transform: scale(1.05);
}

#crown-cure-age-no {
    background: crimson;
    color: white;
}

#crown-cure-age-no:hover {
    background: darkred;
    transform: scale(1.05);
}

/* Utility Class */
a {
    cursor: pointer;
}

/* RESPONSIVE DESIGN */

/* Tablet Styles */
@media (max-width: 1024px) {
    .crown-cure-navbar {
        height: 100px;
        padding: 0 15px;
    }
    
    .crown-cure-navbar-logo img {
        height: 70px;
    }
    
    .crown-cure-navbar-pillar {
        width: 90px;
        height: 90px;
        font-size: 12px;
    }
    
    .crown-cure-navbar-icon {
        font-size: 20px;
    }
    
    /* Show scroll arrow on tablet */
    .crown-cure-navbar-container::after {
        display: flex;
    }
    
    .crown-cure-hero h1 {
        font-size: 2.5rem;
    }
    
    .crown-cure-hero-summary {
        font-size: 1.2rem;
    }
    
    .crown-cure-hero-button {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    .crown-cure-features-title,
    .crown-cure-about-games-title,
    .crown-cure-trials-title,
    .crown-cure-play-games-title,
    .crown-cure-about-page-title,
    .crown-cure-contact-title,
    .crown-cure-rsg-title,
    .crown-cure-privacy-title,
    .crown-cure-terms-title,
    .crown-cure-optout-title {
        font-size: 2.4rem;
    }
    
    .crown-cure-features-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .crown-cure-about-games-item,
    .crown-cure-play-games-item {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .crown-cure-about-games-text,
    .crown-cure-play-games-text {
        text-align: center;
    }
    
    .crown-cure-about-games-image,
    .crown-cure-play-games-image {
        max-width: 350px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .crown-cure-navbar {
        height: 80px;
        padding: 0 10px;
    }
    
    .crown-cure-navbar-logo img {
        height: 60px;
    }
    
    .crown-cure-navbar-pillar {
        width: 70px;
        height: 70px;
        font-size: 10px;
        padding: 8px;
    }
    
    .crown-cure-navbar-icon {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .crown-cure-navbar-container {
        gap: 10px;
        padding: 10px 15px;
    }
    
    /* Show scroll arrow on mobile */
    .crown-cure-navbar-container::after {
        display: flex;
        right: -5px;
        width: 30px;
        font-size: 16px;
    }
    
    .crown-cure-hero {
        padding: 15px;
        height: 90vh;
    }
    
    .crown-cure-hero-overlay {
        padding: 25px;
    }
    
    .crown-cure-hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .crown-cure-hero-summary {
        font-size: 1.1rem;
        margin: 15px auto;
    }
    
    .crown-cure-hero-button {
        font-size: 1.1rem;
        padding: 12px 20px;
        margin-top: 15px;
    }
    
    .crown-cure-features,
    .crown-cure-about-games,
    .crown-cure-trials,
    .crown-cure-play-games,
    .crown-cure-about-page,
    .crown-cure-contact,
    .crown-cure-rsg,
    .crown-cure-privacy,
    .crown-cure-terms,
    .crown-cure-optout {
        padding: 60px 15px;
    }
    
    .crown-cure-features-title,
    .crown-cure-about-games-title,
    .crown-cure-trials-title,
    .crown-cure-play-games-title,
    .crown-cure-about-page-title,
    .crown-cure-contact-title,
    .crown-cure-rsg-title,
    .crown-cure-privacy-title,
    .crown-cure-terms-title,
    .crown-cure-optout-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .crown-cure-features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .crown-cure-features-card {
        padding: 20px;
    }
    
    .crown-cure-features-card h3 {
        font-size: 1.4rem;
    }
    
    .crown-cure-features-card p {
        font-size: 1rem;
    }
    
    .crown-cure-about-games-container,
    .crown-cure-play-games-container {
        gap: 30px;
    }
    
    .crown-cure-about-games-item,
    .crown-cure-play-games-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 15px;
    }
    
    .crown-cure-about-games-text h3,
    .crown-cure-play-games-text h3 {
        font-size: 1.5rem;
    }
    
    .crown-cure-about-games-text p,
    .crown-cure-play-games-text p {
        font-size: 1.1rem;
    }
    
    .crown-cure-about-games-image,
    .crown-cure-play-games-image {
        max-width: 100%;
    }
    
    .crown-cure-trials-desc,
    .crown-cure-play-games-desc,
    .crown-cure-about-page-desc,
    .crown-cure-contact-desc,
    .crown-cure-optout-desc {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .crown-cure-trial {
        padding: 15px;
        margin: 0 10px;
    }
    
    .crown-cure-trial h3 {
        font-size: 1.4rem;
    }
    
    .crown-cure-trial p {
        font-size: 1rem;
    }
    
    .crown-cure-contact-form {
        padding: 20px;
    }
    
    .crown-cure-contact-group label {
        font-size: 1rem;
    }
    
    .crown-cure-contact-group input,
    .crown-cure-contact-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .crown-cure-contact-button {
        font-size: 1.1rem;
        padding: 10px;
    }
    
    .crown-cure-footer {
        padding: 40px 15px;
    }
    
    .crown-cure-footer-disclaimer {
        font-size: 1rem;
        padding: 12px 20px;
        gap: 8px;
    }
    
    .crown-cure-footer-gallery {
        gap: 10px;
        margin: 20px 0;
    }
    
    .crown-cure-footer-gallery img {
        width: 80px;
        height: 80px;
    }
    
    .crown-cure-age-popup {
        padding: 20px;
        margin: 10px;
    }
    
    .crown-cure-age-popup h2 {
        font-size: 1.8rem;
    }
    
    .crown-cure-age-popup p {
        font-size: 1.1rem;
    }
    
    .crown-cure-age-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    #crown-cure-age-yes,
    #crown-cure-age-no {
        width: 100%;
        padding: 12px 20px;
    }
    
    .crown-cure-rsg-content h3,
    .crown-cure-privacy-content h3,
    .crown-cure-terms-content h3,
    .crown-cure-optout-content h3 {
        font-size: 1.5rem;
        margin-top: 25px;
    }
    
    .crown-cure-rsg-content h4,
    .crown-cure-privacy-content h4,
    .crown-cure-terms-content h4 {
        font-size: 1.3rem;
        margin-top: 15px;
    }
    
    .crown-cure-rsg-content p,
    .crown-cure-privacy-content p,
    .crown-cure-terms-content p,
    .crown-cure-optout-content p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .crown-cure-hero h1 {
        font-size: 1.8rem;
    }
    
    .crown-cure-hero-summary {
        font-size: 1rem;
    }
    
    .crown-cure-hero-button {
        font-size: 1rem;
        padding: 10px 18px;
    }
    
    .crown-cure-features-title,
    .crown-cure-about-games-title,
    .crown-cure-trials-title,
    .crown-cure-play-games-title,
    .crown-cure-about-page-title,
    .crown-cure-contact-title,
    .crown-cure-rsg-title,
    .crown-cure-privacy-title,
    .crown-cure-terms-title,
    .crown-cure-optout-title {
        font-size: 1.8rem;
    }
    
    .crown-cure-navbar-pillar {
        width: 60px;
        height: 60px;
        font-size: 9px;
    }
    
    .crown-cure-navbar-icon {
        font-size: 14px;
    }
    
    .crown-cure-footer-gallery img {
        width: 70px;
        height: 70px;
    }
    
    .crown-cure-age-popup h2 {
        font-size: 1.6rem;
    }
    
    .crown-cure-age-popup p {
        font-size: 1rem;
    }
    
    /* Smaller arrow on very small screens */
    .crown-cure-navbar-container::after {
        width: 25px;
        font-size: 14px;
        right: -3px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .crown-cure-navbar-logo img,
    .crown-cure-about-games-image img,
    .crown-cure-play-games-image img,
    .crown-cure-footer-gallery img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .crown-cure-navbar,
    .crown-cure-footer,
    .crown-cure-age-popup-overlay {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .crown-cure-hero,
    .crown-cure-features,
    .crown-cure-about-games,
    .crown-cure-trials,
    .crown-cure-play-games,
    .crown-cure-about-page,
    .crown-cure-contact,
    .crown-cure-rsg,
    .crown-cure-privacy,
    .crown-cure-terms,
    .crown-cure-optout {
        background: white;
        color: black;
        padding: 20px 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Better Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--royal-gold);
    outline-offset: 2px;
}

/* Skip to Content Link for Screen Readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--royal-gold);
    color: var(--noble-blue);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    font-weight: bold;
}

.skip-to-content:focus {
    top: 6px;
}