:root {
    --primary-color: #00BFFF;
    --secondary-color: #ff007a;
    --bg-dark: #333;
    --bg-light: #02020254;
    --text-light: #fff;
    --text-muted: #a0a0a0;
    --accent-color: #ff007a;
    --font-body: 'Arial', sans-serif;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, time, var,
b, u, i, center {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

ul, ol {
    list-style: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: url('../img/bg.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-light);
    height: 100vh;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.accordion-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 6rem 0;
}

.accordion {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-light));
    color: var(--text-light);
    cursor: pointer;
    padding: 20px;
    width: 60%;
    text-align: left;
    border: none;
    outline: none;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

.accordion:hover {
    background: linear-gradient(145deg, var(--bg-light), var(--bg-dark));
    transform: translateY(-5px);
}

.panel {
    padding: 0 18px;
    background-color: rgba(48, 48, 48, 0.75);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.4s ease;
    color: var(--text-light);
    width: 60%;
    margin-bottom: 10px;
    font-weight: bold;
    border-radius: 10px;
}

.panel.show {
    max-height: 300px;
    opacity: 1;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 5px rgba(255, 0, 122, 0.7);
}

.footer {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #a0a0a0;
    background-color: #2a2a2a00;
    margin-top: 40px;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

header.glass {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
    animation: slideDown 1s ease-in-out forwards;
    transform: translateY(-100px);
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo img {
    height: 50px;
    width: auto;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff4081;
    left: 50%;
    bottom: 0;
    transition: width 0.3s ease, left 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

nav ul li a.active,
nav ul li a:hover {
    color: #ff4081;
}

.user-section {
    display: flex;
    align-items: center;
}

.btn-get-in {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    list-style: none;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-get-in:hover {
    background-color: #06015533;
    color: white;
}
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }

    h1 {
        font-size: 2rem;
    }

    .accordion {
        width: 90%;
    }

    p {
        font-size: 1rem;
    }
}
