body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: 'Karla', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    text-align: center;
    padding-bottom: 20px;
}

/* Edit Button Styles */
.gear-edit-btn,
.gear-delete-btn,
#addGearIcon {
    
    display: none;
}

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

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

header h2 {
    color: #8A2BE2; /* Purple */
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 300;
}

.navbar {
    padding: 15px 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: fixed;
    top: 5px;
    left: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 18px;
    height: 2px;
    background-color: #8A2BE2;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-3px, 4px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-3px, -4px);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: " | ";
    color: #666;
    margin: 0 15px;
}

.nav-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-menu li a i {
    margin-right: 8px;
    color: #8A2BE2; /* Purple */
}

.nav-menu li a:hover,
.nav-menu li a:focus {
    color: #8A2BE2; /* Purple */
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
}

.intro-text {
    background-color: #0a0a0a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #222;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.intro-text h3 {
    color: #8A2BE2;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 400;
}

.intro-text h3 i {
    margin-right: 10px;
}

.intro-text h3:first-child {
    margin-top: 0;
}

.intro-text p {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.carousel-section h3, .social-media h3 {
    color: #8A2BE2;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.carousel-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background-color: #050505;
}

.carousel-slide {
    width: 100%;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-thumbnails {
    display: flex;
    justify-content: flex-start;
    padding: 10px 50px;
    background-color: #1a1a1a;
    overflow-x: auto;
    scroll-padding: 50px;
}

.carousel-thumbnails img {
    max-width: 80px;
    max-height: 60px;
    width: auto;
    height: auto;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.carousel-thumbnails img:hover {
    border-color: #8A2BE2;
    transform: scale(1.05);
}

.carousel-thumbnails img.active {
    border-color: #8A2BE2; /* Purple */
    box-shadow: 0 0 10px #8A2BE2;
}

.social-media {
    text-align: center;
    margin-bottom: 30px;
}

.social-icons a {
    color: #e0e0e0;
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus {
    color: #8A2BE2; /* Purple */
    transform: scale(1.1);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: #aaa;
    font-size: 0.9em;
    border-top: 1px solid #333;
}

footer p {
    margin: 5px 0;
}

/* Bio page styles */
.bio-container {
    background-color: #0a0a0a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #222;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.bio-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.bio-text {
    flex: 1;
    min-width: 0;
}

.bio-text h3 {
    color: #8A2BE2;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 400;
}

.bio-text h3 i {
    margin-right: 10px;
}

.bio-text h3:first-child {
    margin-top: 0;
}

.bio-text p {
    margin-bottom: 20px;
    font-size: 0.9em;
    line-height: 1.6;
}

.bio-image {
    flex: 0 0 auto;
    width: 400px;
    max-width: 40%;
}

.bio-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .navbar {
        padding: 10px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: #111;
        padding: 10px 0;
        z-index: 1000;
        border-top: 1px solid #8A2BE2;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
        padding: 5px 20px;
        margin-bottom: 5px;
        position: relative;
    }
    
    .nav-menu li a {
        font-size: 1em;
        padding: 10px 20px;
    }
    
    .nav-menu li:not(:last-child)::after {
        content: "";
    }
    
    .bio-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .bio-image {
        width: 100%;
        max-width: 100%;
        align-self: center;
    }
    
    header h2 {
        font-size: 1.8em;
    }
    .carousel-thumbnails img {
        max-width: 60px;
        max-height: 45px;
        width: auto;
        height: auto;
    }
    .social-icons a {
        font-size: 1.8em;
        margin: 0 10px;
    }
}

/* Photo Gallery Styles */
.photo-gallery-section {
    margin-bottom: 30px;
}

.photo-gallery-section h3 {
    color: #8A2BE2;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.photo-gallery-section h3 i {
    margin-right: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
}

.photo-item {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
    border: 1px solid none;
    overflow: hidden;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.photo-item:hover img {
    opacity: 0.9;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #8A2BE2;
    font-size: 1.2em;
    padding: 40px;
}

.loading-message i {
    margin-right: 10px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #8A2BE2;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(138, 43, 226, 0.8);
    border: none;
    color: white;
    font-size: 20px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    pointer-events: all;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(138, 43, 226, 1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .lightbox-content {
        width: 95%;
        height: 95%;
        padding: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* Video Gallery Styles */
.video-gallery-section {
    margin-bottom: 30px;
}

.video-gallery-section h3 {
    color: #8A2BE2;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.video-gallery-section h3 i {
    margin-right: 10px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
}

.video-item {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.video-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(138, 43, 226, 1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 8px 10px 6px 10px;
    backdrop-filter: blur(2px);
}

.video-title {
    color: #e0e0e0;
    font-size: 0.8em;
    font-weight: 400;
    margin-bottom: 2px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.video-duration {
    color: #8A2BE2;
    font-size: 0.7em;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .video-play-overlay {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .video-info {
        padding: 6px 8px 4px 8px;
    }
    
    .video-title {
        font-size: 0.7em;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .video-duration {
        font-size: 0.6em;
    }
}

/* Discography Styles */
.discography-section {
    margin-bottom: 30px;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 0;
}

.release-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    max-width: none;
}

.release-item:hover {
    transform: scale(1.05);
}

.release-cover {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    flex-shrink: 0;
    margin-bottom: 6px;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-item:hover .release-cover img {
    transform: scale(1.1);
}

.release-info {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.release-title {
    color: #8A2BE2;
    font-size: 0.8em;
    font-weight: 500;
    margin: 0 0 2px 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.release-artist {
    color: #ccc;
    font-size: 0.7em;
    margin: 0 0 2px 0;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.release-details {
    color: #aaa;
    font-size: 0.7em;
    line-height: 1.2;
    flex-grow: 1;
}

.release-year {
    color: #888;
    font-weight: 400;
    font-size: 0.7em;
    margin: 0;
}

.release-label {
    display: none;
}

.release-formats {
    display: none;
}

.format-tag {
    display: none;
}

.genre-tag {
    display: none;
}

.release-genres {
    display: none;
}

.release-styles {
    display: none;
}

.release-role,
.release-type,
.release-status {
    display: none;
}

@media (max-width: 768px) {
    .discography-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }
    
    .release-title {
        font-size: 0.75em;
    }
    
    .release-artist {
        font-size: 0.65em;
    }
    
    .release-year {
        font-size: 0.65em;
    }
}

@media (max-width: 480px) {
    header h2 {
        font-size: 1.5em;
    }
    .intro-text p {
        font-size: 0.95em;
    }
    .carousel-thumbnails img {
        max-width: 50px;
        max-height: 37.5px;
        width: auto;
        height: auto;
    }
    
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .video-play-overlay {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .video-info {
        padding: 4px 6px 3px 6px;
    }
    
    .video-title {
        font-size: 0.65em;
        margin-bottom: 1px;
        line-height: 1.1;
    }
    
    .video-duration {
        font-size: 0.55em;
    }
    
    .discography-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 6px;
    }
    
    .release-title {
        font-size: 0.7em;
    }
    
    .release-artist {
        font-size: 0.6em;
    }
    
    .release-year {
        font-size: 0.6em;
    }
}

/* Footer Links */
.footer-links {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #8A2BE2;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8400ff;
    text-decoration: underline;
}

.copyright-notice {
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-color);
    padding: 1.5rem;
    margin: 2rem auto;
    border: 1px solid var(--secondary-accent);
    border-radius: 8px;
    max-width: 900px;
}

.copyright-notice h3 {
    color: var(--primary-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.copyright-notice p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 1rem;
    background-color: #111;
    border-top: 1px solid var(--secondary-accent);
    z-index: 100;
}

footer p {
    font-size: 14px;
    color: white;
    margin: 0;
}
