/* RegalThamessRoom - Premium Gaming Platform Styles */

/* CSS Custom Properties - Color Palette */
:root {
    /* Core Colors */
    --rtr-ivory: #F7F3EC;
    --rtr-mist: #E9E2D7;
    --rtr-ink: #1B1E24;
    --rtr-muted: #5E666F;

    /* Accents */
    --rtr-teal: #1C6B74;
    --rtr-brass: #C8A15A;
    --rtr-oxblood: #6B2A2A;

    /* UI Elements */
    --rtr-divider: rgba(27, 30, 36, 0.12);
    --rtr-shadow-soft: 0 4px 20px rgba(27, 30, 36, 0.08);
    --rtr-shadow-medium: 0 8px 30px rgba(27, 30, 36, 0.12);
    --rtr-shadow-strong: 0 12px 40px rgba(27, 30, 36, 0.16);

    /* Typography */
    --rtr-font-heading: 'Cormorant Garamond', Georgia, serif;
    --rtr-font-body: 'Mulish', -apple-system, sans-serif;
    --rtr-font-mono: 'IBM Plex Mono', monospace;

    /* Spacing */
    --rtr-container: 1200px;
    --rtr-spacing-xs: 0.5rem;
    --rtr-spacing-sm: 1rem;
    --rtr-spacing-md: 2rem;
    --rtr-spacing-lg: 4rem;
    --rtr-spacing-xl: 6rem;

    /* Transitions */
    --rtr-transition-fast: 0.2s ease;
    --rtr-transition-normal: 0.3s ease;
    --rtr-transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--rtr-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--rtr-ink);
    background-color: var(--rtr-ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Age Verification Modal */
.rtr-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 30, 36, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.rtr-age-modal.rtr-hidden {
    opacity: 0;
    pointer-events: none;
}

.rtr-age-modal-content {
    background: var(--rtr-ivory);
    padding: 3rem;
    border-radius: 4px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--rtr-shadow-strong);
    border: 1px solid var(--rtr-brass);
}

.rtr-age-title {
    font-family: var(--rtr-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-bottom: 1rem;
}

.rtr-age-text {
    color: var(--rtr-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.rtr-age-btn {
    padding: 1rem 2rem;
    font-family: var(--rtr-font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--rtr-transition-normal);
}

.rtr-age-confirm {
    background: var(--rtr-brass);
    color: var(--rtr-ivory);
}

.rtr-age-confirm:hover {
    background: #b8914a;
    transform: translateY(-2px);
    box-shadow: var(--rtr-shadow-medium);
}

.rtr-age-deny {
    background: transparent;
    color: var(--rtr-muted);
    border: 1px solid var(--rtr-divider);
}

.rtr-age-deny:hover {
    background: var(--rtr-mist);
}

/* Cookie Banner */
.rtr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--rtr-ink);
    color: var(--rtr-ivory);
    padding: 1.5rem;
    z-index: 9000;
    transform: translateY(0);
    transition: transform var(--rtr-transition-normal);
}

.rtr-cookie-banner.rtr-hidden {
    transform: translateY(100%);
}

.rtr-cookie-content {
    max-width: var(--rtr-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.rtr-cookie-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.rtr-cookie-buttons {
    display: flex;
    gap: 1rem;
}

.rtr-cookie-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--rtr-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--rtr-transition-normal);
}

.rtr-cookie-accept {
    background: var(--rtr-brass);
    color: var(--rtr-ivory);
}

.rtr-cookie-accept:hover {
    background: #b8914a;
}

.rtr-cookie-decline {
    background: transparent;
    color: var(--rtr-ivory);
    border: 1px solid rgba(247, 243, 236, 0.3);
}

.rtr-cookie-decline:hover {
    background: rgba(247, 243, 236, 0.1);
}

/* Navigation */
.rtr-nav {
    position: sticky;
    top: 0;
    background: var(--rtr-ivory);
    border-bottom: 1px solid var(--rtr-divider);
    z-index: 1000;
    transition: all var(--rtr-transition-normal);
}

.rtr-nav.rtr-nav-game {
    background: var(--rtr-ink);
    border-bottom-color: rgba(247, 243, 236, 0.1);
}

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

.rtr-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--rtr-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rtr-ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.rtr-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.rtr-nav-game .rtr-logo {
    color: var(--rtr-ivory);
}

.rtr-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.rtr-nav-link {
    font-family: var(--rtr-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rtr-muted);
    text-decoration: none;
    position: relative;
    transition: color var(--rtr-transition-fast);
}

.rtr-nav-link:hover {
    color: var(--rtr-teal);
}

.rtr-nav-link.rtr-nav-active {
    color: var(--rtr-teal);
}

.rtr-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rtr-teal);
    transition: width var(--rtr-transition-normal);
}

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

.rtr-nav-game .rtr-nav-link {
    color: var(--rtr-ivory);
}

.rtr-nav-game .rtr-nav-link:hover {
    color: var(--rtr-brass);
}

.rtr-nav-game .rtr-nav-link.rtr-nav-active {
    color: var(--rtr-brass);
}

.rtr-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.rtr-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--rtr-ink);
    transition: all var(--rtr-transition-normal);
}

.rtr-nav-game .rtr-nav-toggle span {
    background: var(--rtr-ivory);
}

/* Hero Section */
.rtr-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--rtr-ink) 0%, #2a2e36 100%);
    overflow: hidden;
}

.rtr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.png') center/cover no-repeat;
    opacity: 0.3;
}

.rtr-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 30, 36, 0.9) 0%, rgba(27, 30, 36, 0.6) 50%, rgba(27, 30, 36, 0.3) 100%);
}

.rtr-hero-container {
    position: relative;
    max-width: var(--rtr-container);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.rtr-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rtr-hero-title {
    font-family: var(--rtr-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--rtr-ivory);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.rtr-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--rtr-mist);
    margin-bottom: 2rem;
    max-width: 500px;
}

.rtr-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.rtr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--rtr-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--rtr-transition-normal);
    letter-spacing: 0.02em;
}

.rtr-btn-primary {
    background: var(--rtr-brass);
    color: var(--rtr-ivory);
}

.rtr-btn-primary:hover {
    background: #b8914a;
    transform: translateY(-2px);
    box-shadow: var(--rtr-shadow-medium);
}

.rtr-btn-secondary {
    background: transparent;
    color: var(--rtr-ivory);
    border: 1px solid var(--rtr-brass);
}

.rtr-btn-secondary:hover {
    background: rgba(200, 161, 90, 0.1);
    border-color: var(--rtr-brass);
}

.rtr-btn-game {
    background: var(--rtr-teal);
    color: var(--rtr-ivory);
}

.rtr-btn-game:hover {
    background: #16555c;
    transform: translateY(-2px);
    box-shadow: var(--rtr-shadow-medium);
}

.rtr-btn-full {
    width: 100%;
}

/* Section Styles */
.rtr-container {
    max-width: var(--rtr-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.rtr-section-title {
    font-family: var(--rtr-font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--rtr-ink);
    text-align: center;
    margin-bottom: 1rem;
}

.rtr-section-divider {
    width: 60px;
    height: 3px;
    background: var(--rtr-brass);
    margin: 0 auto 3rem;
}

section {
    padding: var(--rtr-spacing-xl) 0;
}

/* About Section */
.rtr-about {
    background: var(--rtr-ivory);
}

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

.rtr-about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--rtr-muted);
    line-height: 1.8;
}

.rtr-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.rtr-stat-card {
    background: var(--rtr-ivory);
    border: 1px solid var(--rtr-divider);
    padding: 2rem;
    text-align: center;
    border-radius: 2px;
    transition: all var(--rtr-transition-normal);
}

.rtr-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rtr-shadow-soft);
    border-color: var(--rtr-brass);
}

.rtr-stat-number {
    display: block;
    font-family: var(--rtr-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rtr-brass);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rtr-stat-label {
    font-family: var(--rtr-font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--rtr-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Games Section */
.rtr-games {
    background: var(--rtr-mist);
}

.rtr-games-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rtr-game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--rtr-ivory);
    padding: 3rem;
    border-radius: 2px;
    box-shadow: var(--rtr-shadow-soft);
}

.rtr-game-image {
    aspect-ratio: 4/3;
    background: var(--rtr-mist);
    border-radius: 2px;
    overflow: hidden;
}

.rtr-game-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rtr-teal) 0%, var(--rtr-brass) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtr-game-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--rtr-transition-normal);
}

.rtr-game-card:hover .rtr-game-image-img {
    transform: scale(1.05);
}

.rtr-game-content {
    padding: 1rem;
}

.rtr-game-title {
    font-family: var(--rtr-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-bottom: 1rem;
}

.rtr-game-description {
    color: var(--rtr-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rtr-game-features {
    list-style: none;
    margin-bottom: 2rem;
}

.rtr-game-features li {
    padding: 0.5rem 0;
    color: var(--rtr-muted);
    position: relative;
    padding-left: 1.5rem;
}

.rtr-game-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rtr-brass);
    font-weight: bold;
}

/* Benefits Section */
.rtr-benefits {
    background: var(--rtr-ivory);
}

.rtr-benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rtr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rtr-benefit-card {
    background: var(--rtr-ivory);
    border: 1px solid var(--rtr-divider);
    padding: 2.5rem;
    border-radius: 2px;
    transition: all var(--rtr-transition-normal);
}

.rtr-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rtr-shadow-soft);
    border-color: var(--rtr-brass);
}

.rtr-benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--rtr-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rtr-brass);
    margin-bottom: 1.5rem;
}

.rtr-benefit-title {
    font-family: var(--rtr-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-bottom: 1rem;
}

.rtr-benefit-text {
    color: var(--rtr-muted);
    line-height: 1.6;
}

/* CTA Section */
.rtr-cta {
    background: var(--rtr-ink);
    text-align: center;
}

.rtr-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.rtr-cta-title {
    font-family: var(--rtr-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rtr-ivory);
    margin-bottom: 1rem;
}

.rtr-cta-text {
    color: var(--rtr-mist);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Join Section */
.rtr-join {
    background: var(--rtr-mist);
    text-align: center;
}

.rtr-join-content {
    max-width: 600px;
    margin: 0 auto;
}

.rtr-join-title {
    font-family: var(--rtr-font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-bottom: 1rem;
}

.rtr-join-text {
    color: var(--rtr-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.rtr-footer {
    background: var(--rtr-ink);
    color: var(--rtr-ivory);
    padding: 4rem 0 2rem;
}

.rtr-footer.rtr-footer-compact {
    padding: 3rem 0 2rem;
}

.rtr-footer-container {
    max-width: var(--rtr-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.rtr-footer-disclaimer {
    margin-bottom: 3rem;
}

.rtr-disclaimer-title {
    font-family: var(--rtr-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rtr-brass);
    margin-bottom: 1rem;
}

.rtr-disclaimer-text {
    color: var(--rtr-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rtr-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.rtr-footer-heading {
    font-family: var(--rtr-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rtr-brass);
    margin-bottom: 1rem;
}

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

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

.rtr-footer-link {
    color: var(--rtr-muted);
    text-decoration: none;
    transition: color var(--rtr-transition-fast);
}

.rtr-footer-link:hover {
    color: var(--rtr-brass);
}

.rtr-footer-contact {
    color: var(--rtr-muted);
    font-family: var(--rtr-font-mono);
    font-size: 0.9rem;
}

.rtr-footer-gaming {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 243, 236, 0.1);
}

.rtr-gaming-title {
    font-family: var(--rtr-font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rtr-brass);
    margin-bottom: 1rem;
}

.rtr-gaming-text {
    color: var(--rtr-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rtr-gaming-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rtr-gaming-link {
    color: var(--rtr-teal);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--rtr-transition-fast);
}

.rtr-gaming-link:hover {
    color: var(--rtr-brass);
}

.rtr-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 243, 236, 0.1);
}

.rtr-footer-copy {
    color: var(--rtr-muted);
    font-size: 0.85rem;
}

/* Contact Page */
.rtr-contact-hero {
    background: var(--rtr-ink);
    text-align: center;
    padding: 4rem 0;
}

.rtr-contact-title {
    font-family: var(--rtr-font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--rtr-ivory);
    margin-bottom: 1rem;
}

.rtr-contact-subtitle {
    color: var(--rtr-mist);
    font-size: 1.1rem;
}

.rtr-contact-section {
    padding: 4rem 0;
}

.rtr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.rtr-contact-info-title {
    font-family: var(--rtr-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-bottom: 1rem;
}

.rtr-contact-info-text {
    color: var(--rtr-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.rtr-contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rtr-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--rtr-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rtr-brass);
    flex-shrink: 0;
}

.rtr-contact-detail-content {
    display: flex;
    flex-direction: column;
}

.rtr-contact-detail-label {
    font-family: var(--rtr-font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--rtr-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rtr-contact-detail-value {
    color: var(--rtr-ink);
    font-weight: 500;
}

/* Contact Form */
.rtr-contact-form-wrapper {
    background: var(--rtr-ivory);
    border: 1px solid var(--rtr-divider);
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: var(--rtr-shadow-soft);
}

.rtr-form-group {
    margin-bottom: 1.5rem;
}

.rtr-form-label {
    display: block;
    font-family: var(--rtr-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rtr-ink);
    margin-bottom: 0.5rem;
}

.rtr-form-input,
.rtr-form-select,
.rtr-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--rtr-font-body);
    font-size: 1rem;
    color: var(--rtr-ink);
    background: var(--rtr-ivory);
    border: 1px solid var(--rtr-divider);
    border-radius: 2px;
    transition: all var(--rtr-transition-fast);
}

.rtr-form-input:focus,
.rtr-form-select:focus,
.rtr-form-textarea:focus {
    outline: none;
    border-color: var(--rtr-brass);
    box-shadow: 0 0 0 3px rgba(200, 161, 90, 0.1);
}

.rtr-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.rtr-form-success {
    text-align: center;
    padding: 2rem;
}

.rtr-form-success svg {
    color: var(--rtr-teal);
    margin-bottom: 1rem;
}

.rtr-form-success h3 {
    font-family: var(--rtr-font-heading);
    font-size: 1.5rem;
    color: var(--rtr-ink);
    margin-bottom: 0.5rem;
}

.rtr-form-success p {
    color: var(--rtr-muted);
}

/* Game Page */
.rtr-game-page {
    background: var(--rtr-ink);
}

.rtr-game-section {
    padding: 3rem 0 4rem;
    background: var(--rtr-ink);
}

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

.rtr-game-page-title {
    font-family: var(--rtr-font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--rtr-ivory);
    margin-bottom: 0.5rem;
}

.rtr-game-page-subtitle {
    color: var(--rtr-muted);
    font-size: 1.1rem;
}

.rtr-game-frame-wrapper {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.rtr-game-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--rtr-muted);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--rtr-shadow-strong);
}

.rtr-game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.rtr-game-info {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(247, 243, 236, 0.05);
    padding: 2.5rem;
    border-radius: 2px;
    border: 1px solid rgba(247, 243, 236, 0.1);
}

.rtr-game-info h2 {
    font-family: var(--rtr-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--rtr-ivory);
    margin-bottom: 1rem;
}

.rtr-game-info > p {
    color: var(--rtr-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.rtr-game-features-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rtr-game-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--rtr-ivory);
}

.rtr-game-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--rtr-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.rtr-game-disclaimer {
    background: rgba(200, 161, 90, 0.1);
    border-left: 3px solid var(--rtr-brass);
    padding: 1.5rem;
    border-radius: 2px;
}

.rtr-game-disclaimer p {
    color: var(--rtr-mist);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rtr-game-disclaimer strong {
    color: var(--rtr-brass);
}

/* More Games CTA */
.rtr-more-games {
    padding: 3rem 0;
    background: rgba(247, 243, 236, 0.05);
}

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

.rtr-more-games-content h2 {
    font-family: var(--rtr-font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--rtr-ivory);
    margin-bottom: 1rem;
}

.rtr-more-games-content p {
    color: var(--rtr-muted);
    margin-bottom: 2rem;
}

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

/* Legal Pages */
.rtr-legal {
    padding: 4rem 0;
    background: var(--rtr-ivory);
}

.rtr-legal h1 {
    font-family: var(--rtr-font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-bottom: 0.5rem;
}

.rtr-legal-updated {
    color: var(--rtr-muted);
    font-family: var(--rtr-font-mono);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.rtr-legal-content {
    max-width: 800px;
}

.rtr-legal-content h2 {
    font-family: var(--rtr-font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.rtr-legal-content h3 {
    font-family: var(--rtr-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rtr-ink);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.rtr-legal-content p {
    color: var(--rtr-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rtr-legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.rtr-legal-content ul li {
    color: var(--rtr-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.rtr-legal-content strong {
    color: var(--rtr-ink);
}

/* Responsive Design */
@media (max-width: 968px) {
    .rtr-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rtr-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .rtr-hero-actions {
        justify-content: center;
    }

    .rtr-game-card {
        grid-template-columns: 1fr;
    }

    .rtr-contact-grid {
        grid-template-columns: 1fr;
    }

    .rtr-nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--rtr-ivory);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--rtr-divider);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--rtr-transition-normal);
    }

    .rtr-nav-menu.rtr-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .rtr-nav-toggle {
        display: flex;
    }

    .rtr-cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --rtr-spacing-lg: 3rem;
        --rtr-spacing-xl: 4rem;
    }

    .rtr-container {
        padding: 0 1.5rem;
    }

    .rtr-nav-container {
        padding: 1rem 1.5rem;
    }

    .rtr-hero-title {
        font-size: 2rem;
    }

    .rtr-hero-subtitle {
        font-size: 1rem;
    }

    .rtr-section-title {
        font-size: 1.75rem;
    }

    .rtr-stats-grid {
        grid-template-columns: 1fr;
    }

    .rtr-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rtr-game-card {
        padding: 2rem 1.5rem;
    }

    .rtr-contact-form-wrapper {
        padding: 1.5rem;
    }

    .rtr-game-info {
        padding: 1.5rem;
    }

    .rtr-age-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .rtr-age-title {
        font-size: 1.5rem;
    }

    .rtr-cookie-banner {
        padding: 1rem;
    }

    .rtr-cookie-buttons {
        width: 100%;
    }

    .rtr-cookie-btn {
        flex: 1;
    }
}

/* Animations */
@keyframes rtr-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rtr-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.rtr-animate-in {
    animation: rtr-fade-in 0.6s ease forwards;
}

.rtr-scale-in {
    animation: rtr-scale-in 0.4s ease forwards;
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
.rtr-btn:focus-visible,
.rtr-nav-link:focus-visible,
.rtr-form-input:focus-visible,
.rtr-form-select:focus-visible,
.rtr-form-textarea:focus-visible {
    outline: 2px solid var(--rtr-brass);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .rtr-nav,
    .rtr-cookie-banner,
    .rtr-footer,
    .rtr-hero-actions {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}