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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --tertiary-bg: #2a2a2a;
    --accent-bg: #333333;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --accent-color: #ffffff;
    --accent-hover: #f0f0f0;
    --border-color: #333333;
    --border-hover: #666666;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.6);
    --transition: all 0.2s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Atmospheric Background with Australia-Asia Connection - MUCH MORE VISIBLE */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1506905925346-14bda5d4d4b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

/* Additional atmospheric overlay for depth */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced background animation */
@keyframes backgroundShift {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(0.9);
    }

    50% {
        transform: scale(1.03);
        filter: brightness(1.1);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-svg {
    width: 36px;
    height: 36px;
    fill: var(--text-primary);
    transition: var(--transition);
}

.logo-svg:hover {
    fill: var(--text-secondary);
}

/* Logo styling for the new SVG logo */
.logo-svg {
    width: 36px;
    height: 36px;
    fill: var(--text-primary);
    transition: var(--transition);
}

.logo-svg:hover {
    opacity: 0.8;
}

/* Ensure the logo image scales properly */
.nav-logo img.logo-svg {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-logo h2 {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.01em;
    margin: 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 70px;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    background: transparent;
    background-color: transparent;
    background-image: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-svg {
    width: 60px;
    height: 60px;
    fill: var(--text-primary);
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

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

.cta-button {
    background: var(--text-primary);
    color: var(--primary-bg);
    border: 1px solid var(--text-primary);
    padding: 0.875rem 1.5rem;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background: var(--primary-bg);
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* Clean, minimal design - animations removed */

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Artists Page */
.artists-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

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

.artist-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.artist-image {
    width: 100%;
    height: 250px;
    background: var(--tertiary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artist-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

/* New styles for actual images */
.artist-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.artist-photo[src] {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards, loading 1.5s infinite;
}

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

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.artist-svg-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tertiary-bg);
}

.artist-svg-fallback svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.artist-genre {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.artist-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 400;
}

.artist-cta {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: rgba(26, 26, 26, 0.95);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    backdrop-filter: blur(15px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-artist-image {
    width: 100%;
    height: 300px;
    background: var(--tertiary-bg);
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-artist-image svg {
    width: 120px;
    height: 120px;
    opacity: 0.7;
}

/* Modal image styles */
.modal-artist-image .artist-image-container {
    height: 300px;
}

.modal-artist-image .artist-photo {
    border-radius: 8px;
}

.modal-artist-image .artist-svg-fallback svg {
    width: 120px;
    height: 120px;
    opacity: 0.7;
}

.modal-artist-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal-artist-genre {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-artist-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-features {
    margin-bottom: 2rem;
}

.modal-features h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.modal-cta {
    background: var(--tertiary-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.modal-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* About Page */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.about-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.about-cta {
    background: rgba(26, 26, 26, 0.8);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.about-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

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

.contact-info,
.contact-details {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-info:hover,
.contact-details:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.contact-info h3,
.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Enhanced text contrast for background */
.hero-content,
.page-header,
.about-text,
.contact-info {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
        backdrop-filter: blur(15px);
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .hero-visual {
        order: -1;
    }

    .visual-element {
        width: 200px;
        height: 200px;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-artist-name {
        font-size: 2rem;
    }

    .about-cta {
        padding: 2rem;
    }

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

    .contact-info,
    .contact-details {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 1.5rem 1rem;
    }

    .artists-container,
    .about-container {
        padding: 2rem 1rem;
    }

    .page-header {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Clean, professional styling */

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.page.active {
    animation: fadeInUp 0.6s ease-out;
}

/* Audio Controls */
.audio-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.audio-toggle {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.audio-toggle:hover {
    background: rgba(26, 26, 26, 1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.audio-toggle svg {
    transition: var(--transition);
}

/* Social Media Links */
.social-links {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.social-links a {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(26, 26, 26, 1);
    border-color: var(--accent-color);
    transform: scale(1.05);
    color: var(--accent-color);
}

/* Land Acknowledgement */
.land-acknowledgement {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 90%;
    width: 100%;
    max-width: 600px;
}

.acknowledgement-content {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.indigenous-flag {
    width: 24px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 2px;
}

.acknowledgement-content p {
    margin: 0;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .audio-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .audio-toggle {
        width: 45px;
        height: 45px;
    }

    .social-links {
        bottom: 1rem;
        left: 1rem;
        gap: 0.75rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .social-links a svg {
        width: 18px;
        height: 18px;
    }

    .land-acknowledgement {
        bottom: 0.5rem;
        left: 1rem;
        right: 1rem;
        transform: none;
        max-width: none;
    }

    .acknowledgement-content {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .indigenous-flag {
        width: 20px;
        height: 14px;
    }

    .acknowledgement-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .audio-controls {
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .social-links {
        bottom: 0.75rem;
        left: 0.75rem;
    }

    .land-acknowledgement {
        bottom: 0.25rem;
        left: 0.5rem;
        right: 0.5rem;
    }

    .acknowledgement-content {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }
}

/* Community Section - Minimal */
.community-section {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
}

.community-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.community-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.community-form-container {
    display: flex;
    justify-content: center;
}

.community-form-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--primary-bg);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.community-form-button:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

/* Indigenous Acknowledgement - Restored Hover */
.land-acknowledgement {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.acknowledgement-trigger {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.acknowledgement-trigger:hover {
    background: rgba(26, 26, 26, 1);
    border-color: var(--accent-color);
    transform: scale(1.05);
    color: var(--text-primary);
}

.indigenous-flag-mini {
    width: 18px;
    height: 12px;
    border-radius: 2px;
}

.acknowledgement-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.acknowledgement-content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    max-width: 400px;
    width: 90vw;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.land-acknowledgement:hover .acknowledgement-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.acknowledgement-content p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}