@font-face {
    font-family: Trajan;
    src: url('../fonts/TrajanPro-Bold.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --content-padding: 70px;
    --max-container-width: 1400px;
}

body {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background: #000;
}

.top_bar_wrap {
    position: fixed;
    width: 100%;
    height: 112px;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
}

.top_bar_cont {
    width: 100%;
    max-width: var(--max-container-width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--content-padding);
    border: 1px solid rgba(255,255, 255, 0.1);
}

.top_bar_title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, #5865F2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top_bar_title:hover {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.02);
}

.top_bar_menu {
    display: flex;
    align-items: center;
}

.menu-link {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255, 255, 0.8);
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 10px;
}

.menu-link:hover {
    color: #5865F2;
}

.menu-link.active {
    font-weight: 700;
    color: #fff;
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #5865F2;
}

.menu-link:not(.active):hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #5865F2;
    animation: slideIn 0.3s ease;
}

.menu-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    font-weight: 300;
    margin: 0 5px;
    user-select: none;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.top_bar_social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn_music {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_music:hover {
    background: rgba(88, 101, 242, 0.6);
    border-color: rgba(88, 101, 242, 0.8);
    transform: scale(1.1);
}

.btn_music.playing {
    background: rgba(88, 101, 242, 0.8);
    border-color: rgba(88, 101, 242, 1);
    color: white;
    animation: pulse 1s ease-in-out infinite;
}

.music-icon {
    display: block;
    user-select: none;
}

.btn_discord_small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn_discord_small:hover {
    background: linear-gradient(135deg, #4752C4, #3b3d9e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.fullpage-wrapper {
    width: 100%;
}

.fullpage-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-main {
    background: url('../images/background-2.jpg') center/cover no-repeat;
}

.section-about {
    background: url('../images/background-3.jpg') center/cover no-repeat;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullpage-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.fullpage-section .content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: var(--max-container-width);
    margin: 0 auto;
    padding: 112px var(--content-padding) 30px var(--content-padding);
}

.main_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.tab-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    position: sticky;
    top: 132px;
}

.tab-sidebar-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.tab-sidebar-button:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.3);
}

.tab-sidebar-button.active {
    background: rgba(88, 101, 242, 0.6);
    border-color: rgba(88, 101, 242, 0.8);
}

.tab-sidebar-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.tab-sidebar-label {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-sidebar-button.active .tab-sidebar-label {
    color: #fff;
}

.tab-sidebar-content {
    flex: 1;
    position: relative;
    max-height: calc(100vh - 112px - 80px);
    overflow-y: auto;
}

.tab-sidebar-panel {
    display: none;
    position: relative;
}

.tab-sidebar-panel.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 40px 20px 20px 20px;
}

.tab-sidebar-content::-webkit-scrollbar {
    width: 8px;
}

.tab-sidebar-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.tab-sidebar-content::-webkit-scrollbar-thumb {
    background: rgba(88, 101, 242, 0.5);
    border-radius: 4px;
}

.tab-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: rgba(88, 101, 242, 0.7);
}

.status-container {
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
    margin-top: 40px;
}

.status_bar {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
    text-align: center;
}

.status_label {
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.status_accent_color {
    color: #5865F2;
}

.status_content {
    font-weight: 300;
    letter-spacing: 1.5px;
}

.about-container,
.timeline-container,
.accordion-container {
    padding: 40px 60px;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    text-align: center;
    min-height: 300px;
}

.about-title,
.timeline-title,
.accordion-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.about-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(88, 101, 242, 0.3);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #5865F2;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.5);
}

.timeline-date {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #5865F2;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.timeline-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(88, 101, 242, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
}

.accordion-title-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-icon {
    font-size: 1.4rem;
}

.accordion-label {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.accordion-arrow {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-body {
    padding: 0 24px 24px 24px;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.accordion-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.accordion-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5865F2;
    font-weight: bold;
}

.accordion-list li:last-child {
    margin-bottom: 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5865F2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale1);
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(88, 101, 242, 0.6);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9), 0 0 60px rgba(88, 101, 242, 0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.changelog-content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.changelog-container {
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    animation: fadeInUp 1s ease-out;
}

.changelog-container::-webkit-scrollbar {
    width: 8px;
}

.changelog-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.changelog-container::-webkit-scrollbar-thumb {
    background: rgba(88, 101, 242, 0.5);
    border-radius: 4px;
}

.changelog-container::-webkit-scrollbar-thumb:hover {
    background: rgba(88, 101, 242, 0.7);
}

.changelog-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.changelog-category {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.3s ease;
}

.changelog-category:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
    transform: translateX(5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.category-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.changelog-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5865F2;
    font-weight: bold;
}

.changelog-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    :root {
        --content-padding: 30px;
    }

    .fullpage-section .content {
        padding: 112px var(--content-padding) 30px var(--content-padding);
    }

    .top_bar_title {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .top_bar_menu {
        gap: 0;
    }

    .menu-link {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0 8px;
    }

    .menu-separator {
        margin: 0 4px;
    }

    .menu-link.active::after,
    .menu-link:not(.active):hover::after {
        width: 80%;
    }

    .status-container {
        padding: 15px 40px;
        margin-top: 30px;
    }

    .status_bar {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .btn_discord_small {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .top_bar_cont {
        padding: 0 20px;
    }

    .about-container {
        padding: 30px 40px;
    }

    .about-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-info {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .top_bar_menu {
        gap: 0;
    }

    .menu-link {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        padding: 0 6px;
    }

    .menu-separator {
        margin: 0 3px;
    }

    .menu-link.active::after,
    .menu-link:not(.active):hover::after {
        width: 70%;
    }

    .top_bar_wrap {
        height: 90px;
    }

    .top_bar_cont {
        padding: 0 15px;
    }

    .top_bar_title {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .status-container {
        padding: 12px 30px;
        margin-top: 20px;
    }

    .status_bar {
        font-size: 1rem;
        letter-spacing: 1.2px;
    }

    .btn_discord_small {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .about-container {
        padding: 25px 30px;
    }

    .about-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-info {
        gap: 20px;
    }
}
:root {
    --content-padding: 70px;
    --max-container-width: 1400px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

.fullpage-section {
    min-height: 100vh;
}

.section-hidden {
    display: none !important;
}

.fullpage-section .content {
    max-width: var(--max-container-width);
    margin: 0 auto;
}

.section-about .content {
    flex-direction: column;
    align-items: flex-start;
    padding: 112px var(--content-padding) 30px var(--content-padding);
    max-width: var(--max-container-width);
    margin: 0 auto;
}

.section-main .content {
    align-items: center;
    max-width: var(--max-container-width);
    margin: 0 auto;
}

.section-visible {
    display: block !important;
}

.about-container {
    padding: 40px 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    text-align: center;
    margin: 0 auto 40px;
}

.about-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.about-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5865F2;
}

.timeline-container {
    padding: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.timeline-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #5865F2 0%, rgba(88, 101, 242, 0.3) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(88, 101, 242, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.15);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(88, 101, 242, 0.12);
    border-color: rgba(88, 101, 242, 0.25);
    transform: translateX(5px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: #5865F2;
    border: 3px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(88, 101, 242, 0.5);
}

.timeline-date {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #5865F2;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.timeline-content strong {
    color: #fff;
    font-weight: 600;
}

.accordion-container {
    padding: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.accordion-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(88, 101, 242, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(88, 101, 242, 0.15);
}

.accordion-title-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.accordion-label {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.accordion-arrow {
    font-size: 1.2rem;
    color: #5865F2;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    background: rgba(88, 101, 242, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 20px 25px;
    border-top: 1px solid rgba(88, 101, 242, 0.15);
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.accordion-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5865F2;
    font-weight: bold;
}

.accordion-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-container {
        padding: 30px 40px;
        margin-bottom: 30px;
    }

    .about-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .about-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .about-info {
        gap: 30px;
    }

    .timeline-container,
    .accordion-container {
        padding: 40px 25px;
    }

    .timeline-title,
    .accordion-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline-item::before {
        left: -23px;
        top: 20px;
        width: 10px;
        height: 10px;
    }

    .timeline-item {
        margin-bottom: 25px;
        padding: 15px;
    }

    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-title-content {
        gap: 12px;
    }

    .accordion-icon {
        font-size: 1.3rem;
    }

    .accordion-label {
        font-size: 1rem;
    }

    .accordion-arrow {
        font-size: 1rem;
    }

    .accordion-body {
        padding: 15px 20px;
    }

    .accordion-list li {
        font-size: 0.95rem;
    }
}

.about-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tab-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
}

.tab-sidebar-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    text-align: left;
    width: 100%;
}

.tab-sidebar-button:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    transform: translateX(5px);
}

.tab-sidebar-button.active {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865F2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.tab-sidebar-icon {
    font-size: 1.5rem;
    line-height: 1;
    min-width: 30px;
}

.tab-sidebar-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tab-sidebar-content {
    flex: 1;
    max-width: 900px;
}

.tab-sidebar-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-sidebar-panel.active {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 40px 20px 20px 20px !important;
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        gap: 20px;
    }

    .tab-sidebar {
        min-width: 100%;
        max-width: 300px;
        align-self: center;
    }

    .tab-sidebar-button:hover {
        transform: none;
    }

    .tab-sidebar-content {
        max-width: 100%;
    }
}

.music-button-container {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
}

.music-button-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.music-button-main:hover {
    background: linear-gradient(135deg, #4752C4, #3b3d9e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.music-button-icon {
    font-size: 1.3rem;
    color: #fff !important;
}

.music-button-text {
    font-weight: 600;
}

@media (max-width: 768px) {
    .music-button-main {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .music-button-icon {
        font-size: 1.2rem;
    }

    .wish-form-title {
        font-size: 0.9rem;
    }

    .actions-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .divider-or {
        margin: 10px 0;
    }
}

.actions-row {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease-out;
}

.divider-or {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    min-width: 30px;
}

.wish-form-title-container {
    margin-bottom: 15px;
    margin-top: 40px;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.wish-form-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.wish-form-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.wish-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.wish-input {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 500px;
}

.wish-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.wish-input:focus {
    outline: none;
    border-color: rgba(88, 101, 242, 0.6);
    background: rgba(0, 0, 0, 0.6);
}

.wish-submit-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.wish-submit-button:hover {
    background: linear-gradient(135deg, #4752C4, #3b3d9e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.wish-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.notification {
    position: fixed;
    top: 130px;
    right: 20px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(88, 101, 242, 0.5);
    color: white;
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
}

.notification.success {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.2);
}

.notification.error {
    border-color: rgba(244, 67, 54, 0.5);
    background: rgba(244, 67, 54, 0.2);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(88, 101, 242, 0.2);
    border-top: 4px solid #5865F2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .divider-or {
        font-size: 0.9rem;
    }

    .wish-form-title {
        font-size: 0.9rem;
    }

    .wish-form {
        flex-direction: column;
        width: 100%;
    }

    .wish-input {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }

    .wish-submit-button {
        width: 100%;
    }

    .notification {
        top: 100px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .loader-spinner {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .loader-text {
        font-size: 1rem;
    }
}

.section-404 {
    background: url('../images/background-1.jpg') center/cover no-repeat;
}

.not-found-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    animation: fadeInUp 0.5s ease-out;
}

.not-found-title {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 8rem;
    font-weight: 700;
    color: #5865F2;
    margin: 0 0 20px 0;
    text-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.not-found-text {
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.not-found-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.not-found-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Trajan', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.not-found-button:hover {
    background: linear-gradient(135deg, #4752C4, #3b3d9e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .not-found-container {
        padding: 40px 30px;
        max-width: 90%;
    }

    .not-found-title {
        font-size: 5rem;
    }

    .not-found-text {
        font-size: 1.5rem;
    }

    .not-found-description {
        font-size: 1rem;
    }

    .not-found-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

