/* Latest News Section */
.latest-news {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background-color: rgba(20, 20, 50, 0.4);
    border-radius: 10px;
    border: 1px solid #00f7ff;
}

.news-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2rem;
    color: #ff00cc;
    margin-bottom: 30px;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.news-item {
    width: 100%;
    max-width: 500px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 204, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 204, 0.3);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
    text-align: left;
}

.news-date {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.news-headline {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.4rem;
    color: #ff00cc;
    margin-bottom: 15px;
}

.news-excerpt {
    font-size: 0.95rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(255, 0, 204, 0.3);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    background-color: rgba(255, 0, 204, 0.6);
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.6);
}/* styles.css */

/* Font imports */
@font-face {
    font-family: 'TopSecret';
    src: url('topsecret.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CosmicCursive';
    src: url('cosmiccursive.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #000;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This maintains aspect ratio while filling the container */
    opacity: 0.7;
    transition: opacity 0.5s ease;
    transform: none !important; /* Prevent any transforms */
    will-change: opacity; /* Optimize for opacity animations only */
}

.content-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    min-height: calc(100vh - 200px);
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 3rem;
    color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
    letter-spacing: 2px;
}

.logo span {
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc, 0 0 20px #ff00cc;
}

/* Navigation styles */
nav {
    background-color: rgba(20, 20, 50, 0.8);
    border-top: 1px solid #00f7ff;
    border-bottom: 1px solid #00f7ff;
}

.menu-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-item {
    padding: 15px 25px;
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover {
    color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff;
}

.menu-item:hover::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 25px;
    right: 25px;
    height: 2px;
    background-color: #00f7ff;
    box-shadow: 0 0 10px #00f7ff;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00f7ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    margin: 0 auto;
    text-align: center;
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #00f7ff;
    margin-top: 30px;
}

.footer-content {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 1rem;
    color: #a0a0a0;
}

.footer-content a {
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: #ff00cc;
    text-shadow: 0 0 5px #ff00cc;
}

/* Home page styles */
.home-hero {
    text-align: center;
    padding: 50px 0;
}

.hero-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 3.5rem;
    color: #ff00cc;
    text-shadow: 0 0 15px #ff00cc;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff;
    margin-bottom: 40px;
}

.navigation-paths {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.path-item {
    width: 200px;
    height: 200px;
    background-color: rgba(20, 20, 50, 0.6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #00f7ff;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

.path-item:hover {
    transform: scale(1.05);
    background-color: rgba(50, 50, 100, 0.8);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.6);
}

.path-icon {
    font-size: 2.5rem;
    color: #00f7ff;
    margin-bottom: 15px;
}

.path-label {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #f0f0f0;
}

.featured-songs {
    margin-top: 80px;
    text-align: center;
    padding: 30px;
    background-color: rgba(20, 20, 50, 0.4);
    border-radius: 10px;
    border: 1px solid #00f7ff;
}

.featured-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2rem;
    color: #00f7ff;
    margin-bottom: 30px;
}

.songs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.song-item {
    width: 220px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.song-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.song-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.song-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.song-item:hover .song-image img {
    transform: scale(1.1);
}

.song-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #00f7ff;
    margin: 15px 10px 10px;
}

.song-album {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0 10px 15px;
}

.play-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff00cc;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
}

/* Albums page styles */
.albums-container {
    padding: 30px 0;
}

.album-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc;
    margin-bottom: 30px;
    text-align: center;
}

.album {
    margin-bottom: 70px;
    background-color: rgba(20, 20, 50, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00f7ff;
}

.album-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.album-cover {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}

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

.album-details {
    flex: 1;
    min-width: 300px;
}

.album-name {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00f7ff;
    margin-bottom: 15px;
}

.album-description {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.album-tracks {
    margin-top: 30px;
}

.tracks-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.5rem;
    color: #ff00cc;
    margin-bottom: 20px;
}

.tracks-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.track-item {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 247, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.track-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.track-number {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #ff00cc;
    width: 30px;
    text-align: center;
}

.track-info {
    flex: 1;
}

.track-name {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #00f7ff;
    margin-bottom: 5px;
}

.track-duration {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.track-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ff00cc;
    color: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-play:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
}

/* Events page styles */
.events-container {
    padding: 30px 0;
}

.events-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc;
    margin-bottom: 40px;
    text-align: center;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item {
    background-color: rgba(20, 20, 50, 0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #00f7ff;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}

.event-date {
    width: 120px;
    height: 120px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff00cc;
}

.event-day {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
}

.event-month {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #00f7ff;
    margin-top: 5px;
}

.event-details {
    flex: 1;
    min-width: 300px;
}

.event-name {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00f7ff;
    margin-bottom: 15px;
}

.event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.event-location, .event-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #f0f0f0;
}

.event-icon {
    color: #ff00cc;
    font-size: 1.2rem;
}

.event-description {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.event-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.event-button {
    padding: 10px 20px;
    background-color: #ff00cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-button:hover {
    background-color: #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.6);
}

/* About page styles */
.about-container {
    padding: 30px 0;
}

.about-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    width: 400px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}

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

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

.about-paragraph {
    font-size: 1.1rem;
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.band-members {
    margin-top: 60px;
}

.members-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2rem;
    color: #00f7ff;
    text-align: center;
    margin-bottom: 40px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.member-card {
    background-color: rgba(20, 20, 50, 0.4);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 247, 255, 0.4);
}

.member-photo {
    width: 100%;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.6);
}

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

.member-info {
    padding: 20px;
}

.member-name {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.4rem;
    color: #ff00cc;
    margin-bottom: 10px;
}

.member-role {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #00f7ff;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 0.9rem;
    color: #f0f0f0;
    line-height: 1.6;
}

/* Credits page styles */
.credits-container {
    padding: 30px 0;
}

.credits-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc;
    margin-bottom: 40px;
    text-align: center;
}

.credits-section {
    margin-bottom: 50px;
    background-color: rgba(20, 20, 50, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00f7ff;
}

.section-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00f7ff;
    margin-bottom: 25px;
    text-align: center;
}

.credits-list {
    column-count: 2;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .credits-list {
        column-count: 1;
    }
}

.credit-item {
    margin-bottom: 20px;
    break-inside: avoid;
}

.credit-role {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #ff00cc;
    margin-bottom: 10px;
}

.credit-people {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.special-thanks {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #00f7ff;
    text-align: center;
    line-height: 1.8;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.signature {
    font-family: 'CosmicCursive', 'Arial', sans-serif;
    font-size: 1.4rem;
    color: #ff00cc;
    text-align: right;
    margin-top: 20px;
}

/* Contact page styles */
.contact-container {
    padding: 30px 0;
}

.contact-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc;
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background-color: rgba(20, 20, 50, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00f7ff;
}

.info-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00f7ff;
    margin-bottom: 25px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff00cc;
    font-size: 1.2rem;
}

.info-text {
    flex: 1;
}

.info-label {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #ff00cc;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.info-value a {
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-value a:hover {
    color: #ff00cc;
    text-shadow: 0 0 5px #ff00cc;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: rgba(20, 20, 50, 0.4);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00f7ff;
}

.form-title {
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #00f7ff;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1rem;
    color: #ff00cc;
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #ff00cc;
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.3);
    outline: none;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ff00cc;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'TopSecret', 'Arial', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.6);
}

/* Responsive styles */
@media (min-width: 769px) {
    /* Always show the menu on desktop */
    .menu-container {
        display: flex !important; /* Use !important to override any inline styles */
    }
    
    /* Hide the menu toggle button on desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .content-container {
        max-width: 100%;
        margin: 0 15px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .navigation-paths {
        gap: 20px;
    }
    
    .path-item {
        width: 170px;
        height: 170px;
    }
    
    .album-cover {
        margin: 0 auto;
    }
    
    .tracks-list {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
    
    .event-date {
        margin: 0 auto;
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .path-item {
        width: 150px;
        height: 150px;
    }
    
    .path-icon {
        font-size: 2rem;
    }
    
    .path-label {
        font-size: 1rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .album-title, .events-title, .about-title, .credits-title, .contact-title {
        font-size: 2rem;
    }
    
    .album-name, .event-name, .section-title, .info-title, .form-title {
        font-size: 1.5rem;
    }
    
    .tracks-title, .members-title {
        font-size: 1.3rem;
    }
} {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    /* Mobile menu styles */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .menu-container {
        flex-direction: column;
        align-items: center;
        display: none; /* Hide by default on mobile */
    }
    
    .menu-container.active {
        display: flex; /* Show when toggled */
    }
    
    .menu-item {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    .menu-item:hover::after {
        left: 35%;
        right: 35%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .navigation-paths {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .path-item {
        width: 200px;
        height: 200px;
    }
    
    .songs-list {
        flex-direction: column;
        align-items: center;
    }
    
    .song-item {
        width: 100%;
        max-width: 300px;
    }
    
    .album-info {
        flex-direction: column;
        align-items: center;
    }
    
    .album-cover