@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');

body {
    background-color: #000;
    color: #f00;
    font-family: "IBM Plex Sans", sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    padding: 20px;
}
.qcf_description {
    margin: 20px auto;
    width: 70%;
    text-align: center;
}
.event-image {
    margin: 20px auto;
    width: 65%;
    height: auto;
    background-color: #222;
    color: #f00;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #f00;
    font-size: 1.2em;
}
.event-image img {
    max-width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

.signup-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 20px 0;
}

.signup-button:hover {
    background-color: #000;
    color: #f00;
    border: 1px solid #f00;
}

.social-buttons {
    margin-top: 20px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    padding: 10px 15px;
    background-color: #f00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: #000;
    color: #f00;
    border: 1px solid #f00;
}

a {
    color: white;
    /*text-decoration: none; */
}

a:visited {
    color: white;
}

a:hover {
    color: #f00; 
}

a:active {
    color: #00ffff; 
}

/* Age Verification Popup Styles */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    padding: 20px;
    box-sizing: border-box;
}

.age-popup h2 {
    font-size: 1.8em;
    text-align: center;
}

.age-popup-buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn {
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}

.age-btn.agree {
    background-color: #f00;
    color: #000;
    border: none;
}

.age-btn.disagree {
    background-color: #000;
    color: #f00;
    border: 1px solid #f00;
}

/* Animations */
.age-popup.fade-in {
    animation: fadeIn 0.5s forwards;
}

.age-popup.fade-out {
    animation: fadeOut 0.5s forwards;
}

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

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
/* Blur effect only on main content */
main.blur-active {
    filter: blur(6px);
    transition: filter 0.3s ease;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .age-popup h2 {
        font-size: 1.4em;
    }
    .age-btn {
        width: 100%;
        max-width: 250px;
    }
}
