/* Background and overlay */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(
        circle at center,
        rgba(1, 1, 1, 0.85) 0%,
        rgba(1, 1, 1, 0.75) 20%,
        rgba(1, 1, 1, 0.6) 40%,
        rgba(1, 1, 1, 0) 100%
    );
}

/* Layout */
.content-wrapper {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header styles */
.header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
    font-weight: 100;
}

/* Logo Styles */
.header .title h1 img {
    height: 10rem; /* Adjust this value as needed */
    width: auto;
    vertical-align: middle; /* Keep vertical alignment consistent */
    display: inline-block; /* Ensures proper block behavior for sizing */
}

/* Links */
.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.links a,
.recent-activity a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.links a:hover,
.recent-activity a:hover {
    opacity: 1;
}

.recent-activity {
    margin-top: 0.5rem; /* Optional: Add some space above the recent activity text */
    font-size: 0.9rem; /* Match link font size */
    opacity: 0.8; /* Match link opacity */
}

.separator {
    color: white;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
}

.radio-player {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 4;
}

#radio-toggle {
    display: none;
    background: rgba(48, 48, 48, 0.7);
    border: 1px solid rgba(48, 48, 48, 0.7);
    color: #ffffff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Gantari', sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

#radio-toggle:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .radio-player {
        top: 1rem;
        left: 1rem;
    }
}

.radio-dialog {
    position: relative;
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 2rem;
    z-index: 1000;
}

.radio-dialog.show {
    opacity: 1;
}

.radio-dialog-content {
    color: white;
    text-align: center;
}

.typewriter {
    position: relative;
    white-space: nowrap;
    font-family: 'Gantari', sans-serif;
    font-weight: 100;
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

.typewriter::after {
    content: ' _';
    position: absolute;
    right: -1.2em;
    animation: blink-caret .75s step-end infinite;
}

.choice {
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.choice:hover {
    color: rgba(255,255,255,0.7);
}

@keyframes blink-caret {
    from, to { opacity: 0 }
    50% { opacity: 1 }
}

@media (max-width: 768px) {
    .radio-dialog {
        margin-top: 1.5rem;
    }
    .typewriter {
        font-size: 0.8rem;
    }
}