@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Syne&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Syne:wght@400..800&display=swap');

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Syne', sans-serif;
    background: linear-gradient(90deg,rgba(5, 5, 5, 1) 0%, rgba(7, 7, 9, 1) 50%, rgba(4, 4, 4, 1) 100%);
    color: white;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background-color: rgba(0, 0, 0, 0.476);
}

.nav .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    height: 9vh;
}

.nav .left, .nav .right {
    display: flex;
    align-items: center;
    z-index: 1;
}

.nav .right {
    margin-left: auto;
}

.nav .left {
    font-size: 1.7rem;
    font-weight: 500;
    cursor: default;
}

.nav .center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav .center a,
.nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.nav .center a {
    color: rgba(220, 220, 220, 0.7);
}

.nav .center a.active {
    color: white;
}

.nav a:hover,
.nav .center a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav .button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    font-size: 2vh;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Syne', sans-serif;
    text-decoration: none;
}

.nav .button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}
@keyframes fadeInSideBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}@keyframes fadeInSideBlur2 {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

.fadeinleft {
    animation: fadeInSideBlur 0.4s ease-out forwards;
    opacity: 0;
}
.fadeinright {
    animation: fadeInSideBlur2 0.4s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}
@keyframes popInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.home-nav {
    animation: popInFromTop 0.4s ease-out forwards;
    opacity: 0;
}

.banner {
    background-image: url(/images/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.banner h1,
.banner h2 {
    margin: 0;
    padding: 0.5em 0;
    animation: fadeInBlur 0.4s ease-out forwards;
    opacity: 0;
}

.banner h2 {
    font-size: 3vh;
    font-weight: 400;
    opacity: 0.85;
    font-style: italic;
    margin-bottom: -20px;
}

.banner h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 400;
    font-variation-settings: "wght" 400;
    font-size: 3rem;
}

.button,
.nav .button,
.child-div .button,
.popup-right .button1 {
    font-family: 'Syne', sans-serif;
    font-size: 2vh;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

#btn-wrapper {
    animation: fadeInBlur 0.4s ease-out forwards;
    opacity: 0;
}

.button:hover,
.child-div .button:hover,
.popup-right .button1:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.search-div {
    background-image: url('/images/search.jpg');
    background-size: cover;
    background-position: center;
    height: 30vh;
    position: relative;
    padding-top: 9vh;
}

@keyframes fadeInInput {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, 0);
    }
}

.search-input {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInInput 0.4s ease-out forwards;
    width: 90%;
    max-width: 600px;
    height: 60px;
    padding: 0 20px;
    border-radius: 40px;
    border: none;
    font-size: 1.1rem;
    font-family: 'Syne', sans-serif;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.137);
    outline: none;
    background-color: rgba(0, 0, 0, 0.476);
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    background: rgba(0, 0, 0, 0.055);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.explore-div,
.popular-content,
.how-content,
.craft-content,
.partners-content {
    padding: 20px;
    width: 80%;
    color: white;
}

.explore-div h2,
.popular-content h2,
.how-content h2,
.craft-content h2,
.partners-content h2 {
    font-size: 2.2rem;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease;
    width: 40vh;
    height: 45vh;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.822), rgba(0, 0, 0, 0.024));
    color: white;
    z-index: 2;
}

.card .name-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.card .location-title {
    font-size: 1rem;
    margin: 5px 0;
}

.card .button1 {
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.2);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.card .button1:hover {
    background-color: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.stars {
    font-family: 'DM Sans', sans-serif;
    color: gold;
    font-size: 1.15rem;
    letter-spacing: 2px;
    user-select: none;
    margin-top: 7px;
}

.sudo-nav {
    padding: 20px 20px;
    position: fixed;
    z-index: 1000;
    top: 0;
}

.sudo-nav p {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
}

.sudo-nav p:hover {
    color: rgba(180, 180, 180, 0.8);
}

.sudo-nav a {
    text-decoration: none;
    color: white;
    width: fit-content;
    background-color: red;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signin-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.signin-container .left-side {
    width: 28.8%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transform: translateY(-10%);
}

.signin-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.center1 {
    width: 80%;
    align-self: center;
}

.center1 .email-input,
.password-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-family: 'Syne', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color 0.3s ease;
}

.password-input {
    display: none;
    margin-top: 10px;
}

.child-div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.child-div a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
    margin-top: 7px;
}

.child-div .button {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.right-side {
    background-image: url(/images/signin.jpg);
    background-size: cover;
    background-position: center;
    width: 71.2%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 15px;
}

.tagline {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #ccc;
    text-align: center;
}

.contact-section {
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.contact-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-container h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.contact-container .tagline {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-input,
.contact-textarea {
    padding: 14px 20px;
    font-size: 1rem;
    font-family: 'Syne', sans-serif;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-input:focus,
.contact-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
}

.popular-missions,
.how-it-works,
.craft-options,
.partners {
    display: flex;
    background: linear-gradient(90deg,rgba(5, 5, 5, 1) 0%, rgba(7, 7, 9, 1) 50%, rgba(4, 4, 4, 1) 100%);
    justify-content: center;
}

.how-content h2,
.partners-content h2 {
    text-align: right;
}

.craft-content h2 {
    text-align: left;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.step {
    background-color: #14141a;
    padding: 20px;
    border-radius: 10px;
    width: 40vh;
    height: 10vh;
}

.numeration {
    text-align: right;
    color: #adadad;
    padding: 0;
    margin-top: 0px;
    font-size: 1.5rem;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: -20px;
}

.emoji-title {
    margin-top: -10px;
    font-size: 1.2rem;
}

.sub {
    font-size: 1.2rem;
    color: white;
    bottom: 0;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vh;
    flex-wrap: wrap;
}

.partner-logos img {
    width: 20vh;
    object-fit: contain;
}

.explore-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,rgba(5, 5, 5, 1) 0%, rgba(7, 7, 9, 1) 50%, rgba(4, 4, 4, 1) 100%);
    padding: 40px 20px;
    color: white;
    text-align: center;
    box-sizing: border-box;
}

.explore-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.explore-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
}

.explore-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 24px;
    font-size: 2vh;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 3.2vh;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

footer {
    background: linear-gradient(to right, #0a0a0a, #1a1a1a);
    color: #c0c0c0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px 20px;
    font-family: 'Syne', sans-serif;
    box-shadow: 0 -2px 30px rgba(0, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #00f0ff, #ff00c8);
    box-shadow: 0 0 15px #00f0ff, 0 0 20px #ff00c8;
    opacity: 0.3;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.footer-left p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 400px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-right a {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
}

.shameless-promo {
    text-decoration: underline;
    color: white;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    width: 80%;
    height: 80%;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    animation: popFade 0.3s ease;
    font-family: 'Syne', sans-serif;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.popup-card h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.popup-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e6e6e6;
    margin-bottom: 12px;
}

.close-popup {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 2.8rem;
    cursor: pointer;
    color: white;
    transition: color 0.2s ease;
}

.close-popup:hover {
    color: #949494;
}

.popup-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.popup-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.popup-box strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.1rem;
}

.popup-box ul {
    list-style: disc;
    margin-left: 20px;
    color: #ddd;
}

.popup-box ul li {
    margin-bottom: 6px;
}

.popup-rating {
    font-size: 1.2rem;
    color: #ffc107;
    margin-top: 10px;
}

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

@media (max-width: 768px) {
    .popup-info-grid {
        grid-template-columns: 1fr;
    }
}

.popup-left {
    flex: 2;
    min-width: 300px;
}

.popup-right {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 300px;
    max-width: 380px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
}

.popup-right::-webkit-scrollbar {
    width: 8px;
}

.popup-right::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.popup-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.popup-price-tag,
.best-for {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.popup-price-tag {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.best-for {
    font-size: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.availability {
    color: #ffd700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

.date-select option {
    background: #000;
    color: white;
}

.promo-banner {
    background: rgba(255, 255, 255, 0.1);
    color: #ffb347;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-right .button1 {
    width: 100%;
    text-align: center;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 0;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.popup-right .button1.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.note {
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.popup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-height: 70vh;
    overflow: hidden;
}

/* Top Header/Profile */
.top-header {
    margin-top: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.top-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.actual-pfp-circle {
    width: 80px;
    margin-top: 2vh;
    height: 80px;
    background: whitesmoke;
    color: black;
    border-radius: 50%;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.actual-pfp-circle h2 {
    margin: 0;
    font-size: 2.5rem;
    color: black;
}

.actual-pfp-text {
    font-size: 1.2rem;
    color: white;
}

.actual-pfp-text p {
    margin-top: -20px;
    color: #adadad;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.top-btn {
    font-family: 'Syne', sans-serif;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.95rem;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.top-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Missions & Wishlist */
.missions,
.wishlist {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px;
}

.missions::-webkit-scrollbar {
    display: none;
}

.remove-wishlist {
    background: rgba(255, 255, 255, 0.225);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    transition: transform 0.3s ease;
}

.remove-wishlist:hover {
    transform: scale(1.05);
}

/* Logout Confirm */
.logout-confirm {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Syne', sans-serif;
}

.logout-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    max-width: 400px;
    font-family: 'Syne', sans-serif;
}

.logout-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: 'Syne', sans-serif;
}

.logout-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: background 0.3s ease;
    font-family: 'Syne', sans-serif;
}

.logout-actions button:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* About Page */
.about-section {
    height: calc(100vh - 9vh);
    padding: 9vh 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.about-container h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5em;
    text-align: center;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5em;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1em;
}

.about-text ul {
    list-style: none;
    padding-left: 1.2em;
    margin-bottom: 1em;
}

.about-text ul li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.6em;
    color: rgba(255, 255, 255, 0.85);
}

.about-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #0af;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

.about-mission {
    width: 100%;
    margin-top: 3em;
    text-align: center;
}

.about-mission h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5em;
}

.about-mission p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
