
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #8B1538;
    --dark-red: #6B1028;
    --light-red: #A64D79;
    --accent-gold: #b89946;
    --warm-white: #FDF8F5;
    --soft-gray: #F5F3F0;
    --text-dark: #2C1810;
    --text-light: #6B5B73;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #f8f8f8, var(--warm-white));
    min-height: 100vh;
}

body.main .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
}

body.main .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    border-radius: 2px;
}

body.forum .section-title {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 600;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

a {
    color: var(--text-light);
    text-decoration: none;
}

p {
    margin: 1rem 0;
}

.logo-container {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1000;
}
    #logo {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 1000;
        height: 120px;
    }

body.unknown .navigation,
body.unknown .header {
  display: none;
}

body.main #main-navigation {
  display: block;
}

body.main #forum-navigation {
  display: none;
}

body.main #main-header {
  display: block;
}

body.main #forum-header {
  display: none;
}

body.forum #main-navigation {
  display: none;
}

body.forum #forum-navigation {
  display: block;
}

body.forum #main-header {
  display: none;
}

body.forum #forum-header {
  display: block;
}

/* Navigation Styles */
.navigation {
    background: white;
    box-shadow: 0 2px 10px rgba(139, 21, 56, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
}

.scrolled .logo {
    color: var(--text-light);
}

.logo img {
    height: 60px;
}

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

.nav-item {
    position: relative;
}

.nav-link-none,
.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
body.forum .nav-link,
.scrolled .nav-link-none,
.scrolled .nav-link {
    color: var(--text-dark);
}
.nav-link-none {
    cursor: default;
}

.nav-link:hover,
.nav-link.active { 
    color: #fff;
    background: var(--light-red);
}

body.forum .nav-link:hover,
.scrolled .nav-link:hover,
.scrolled .nav-link.active {
    color: var(--primary-red);
    background: rgba(139, 21, 56, 0.05);
}
/* .scrolled .nav-link:hover {
    color: var(--primary-red);
} */

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 21, 56, 0.1);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--soft-gray);
    color: var(--primary-red);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-red);
    cursor: pointer;
}

/* Header Styles - More Professional */
.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 4rem 2rem 4rem 2rem;
    text-align: center;
    position: relative;
    margin-top: 80px;
}
body.forum .header {
    padding: 6rem 2rem 3rem 2rem;
    margin-top: 20px;
}

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

.header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.header-description {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 750px;
    margin: 2rem auto 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Service Detail Pages */
.service-detail {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 21, 56, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-right: 1rem;
}

.service-title {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 600;
}

.service-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-content h2,
.service-content h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.service-content ul,
.service-content ol {
    margin: 1rem 0 2rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    font-weight: 600;
}

.pricing-box {
    background: linear-gradient(135deg, var(--soft-gray) 0%, white 100%);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Massage Pricing Table */
.massage-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.1);
    border: 2px solid var(--primary-red);
}

.massage-pricing-table th {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.massage-pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(139, 21, 56, 0.1);
}

.massage-pricing-table tr:last-child td {
    border-bottom: none;
}

.massage-pricing-table .service-name {
    font-weight: 600;
    color: var(--primary-red);
    width: 70%;
}

.massage-pricing-table .service-description {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.3rem;
}

.massage-pricing-table .price-duration {
    text-align: right;
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.1rem;
    width: 30%;
}

.massage-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(139, 21, 56, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

/* Home Page Styles */
#quote {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
    text-align: center;
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.service-card {
    background: white;
    padding: 0 2rem 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(139, 21, 56, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.qualifications-list {
    list-style: none;
}

.qualifications-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.qualifications-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.qualifications-list strong,
.service-detail strong {
    color: var(--primary-red);
    font-weight: 600;
}

/* Contact Page */

.mission-section,
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: white;
    border-radius: 20px;
    padding: 3rem;
}

.mission-section {
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h6 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: left;
}

.intro-text {
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* .contact-details {
    space-y: 1rem;
} */

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    width: 20px;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-item.phone {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item.phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

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

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--soft-gray);
        margin: 0.5rem 0;
    }

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

    .about-content > div:last-child {
        order: -1;
    }

    .main-content {
        padding: 2rem 1rem;
    }
}

.qualifications-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.mission-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.qualifications-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .mission-content > div:last-child,
    .qualifications-content > div:last-child {
        order: -1;
    }
}

.qualifications-list {
    list-style: none;
}

.qualifications-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.qualifications-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.qualifications-list strong {
    color: var(--primary-red);
    font-weight: 600;
}

.mission-image,
.profile-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--accent-gold) 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mission-image {
    height: 450px;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    display: block;
    margin: 2rem auto;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background: var(--accent-gold);
    /* background: #F4C542; */
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    font-family: Arial;
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(132, 132, 132, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--soft-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: white;
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    justify-self: center;
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
    transform: scale(0.9);
}

.submit-button:hover {
    transform: translateY(-3px) scale(0.91);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.4);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.05;
    animation: float-random 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(20px, 20px) rotate(270deg); }
}

.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header .subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content,
    .qualifications-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, white 0%, var(--warm-white) 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(139, 21, 56, 0.3);
    border: 2px solid rgba(139, 21, 56, 0.1);
    transform: scale(0.8);
    animation: modalSlideIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    to {
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 21, 56, 0.1);
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.modal-icon {
    font-size: 3rem;
    margin-left: 1rem;
    opacity: 0.8;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
}

.modal-close:hover {
    background: var(--dark-red);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.4);
}

.modal-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.modal-body h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 1.5rem;
}

.modal-body ul {
    margin: 1rem 0 2rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.modal-highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--light-red) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    font-weight: 600;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.modal-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F4C542 100%);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.modal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

#footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0 auto 2rem auto;
  max-width: 700px;
}
  #footer > div.disclaimer {
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgb(146, 146, 146);
    margin: 0 1rem;
  }
  body.forum #footer > div.disclaimer {
    display: none;
  }
  #footer p {
    margin: 0 1rem;
  }