@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --bg-main: #121212;
    --sidebar-bg: #1e1e1e;
    --sidebar-text: #e0e0e0;
    --link-hover-bg: #333333;
    --link-active-bg: #ff8c00;
    --link-active-glow: #ffa500;
    --text-color: #f5f5f5;
    --title-color: #ff8c00;
    --info-container-bg: rgba(0, 0, 0, 0.2);
    --border-color: #333333;
    --contact-btn-text: #000000;
}

body[data-theme="light"] {
    --bg-main: #f0f2f5;
    --sidebar-bg: #ffffff;
    --sidebar-text: #333333;
    --link-hover-bg: #e9e9e9;
    --link-active-bg: #ff8c00;
    --link-active-glow: #ffa500;
    --text-color: #1c1c1c;
    --title-color: #d97706;
    --info-container-bg: #ffffff;
    --border-color: #e0e0e0;
    --contact-btn-text: #ffffff;
}

.theme-toggle {
    background: var(--link-hover-bg);
    border: 1px solid var(--border-color);
    color: var(--sidebar-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--link-active-bg);
    color: var(--link-active-bg);
}

.sidebar-footer {
    text-align: center;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-color); 
    display: flex; 
    overflow: hidden; 
}

.sidebar { 
    width: 240px; 
    height: 100vh; 
    position: fixed; 
    background-color: var(--sidebar-bg); 
    padding: 2rem 1.5rem; 
    display: flex; 
    flex-direction: column; 
    z-index: 10; 
    border-right: 1px solid var(--border-color); 
}
.artist-name { 
    font-size: 1.8rem; 
    color: var(--text-color); 
    margin-bottom: 2.5rem; 
    text-align: center; 
}
.nav-links { 
    list-style: none; 
    flex-grow: 1; 
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 1.2rem;
    color: var(--sidebar-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    position: relative;
    border: none;
    background: rgb(255,27,0);
    background: linear-gradient(0deg, rgba(255,27,0,1) 0%, rgb(235, 157, 12) 100%);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link:hover {
    color: #f09f09;
    background: transparent;
    box-shadow: none;
}

.nav-link:before,
.nav-link:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #f79604;
    box-shadow:
     -1px -1px 5px 0px #fff,
     7px 7px 20px 0px #0003,
     4px 4px 5px 0px #0002;
    transition: 400ms ease all;
}

.nav-link:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.nav-link:hover:before,
.nav-link:hover:after {
    width: 100%;
    transition: 800ms ease all;
}

.nav-link.active {
    color: #ff9900;
    background: transparent;
    box-shadow: none;
}

.nav-link.active:before,
.nav-link.active:after {
    width: 100%;
}

.nav-link.active::after {
    display: none;
}
.sidebar-footer { 
    margin-top: auto; 
    padding-top: 1rem; 
}
#lang-selector { 
    width: 100%;
    background-color: var(--link-hover-bg);
    color: var(--sidebar-text);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23e0e0e0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: .65rem auto;
}

.main-content { 
    margin-left: 240px; 
    width: calc(100% - 240px); 
    height: 100vh; 
    position: relative; 
}
.page { 
    display: none; 
    width: 100%; 
    height: 100%; 
    padding: 2rem; 
    flex-direction: column; 
    align-items: center; 
    overflow-y: auto; 
}
.page.active { 
    display: flex; 
    animation: fadeIn 0.5s ease-in-out; 
}
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.hidden-storage { 
    position: absolute; 
    left: -9999px; 
    top: -9999px; 
}
#gallery-hub, #websites-hub { 
    justify-content: flex-start; 
}
.hub-nav-container { 
    width: 100%; 
    max-width: 900px; 
    margin-bottom: 1.5rem; 
    flex-shrink: 0; 
}
.hub-nav-level1 { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem 
}
.hub-tab-button {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.hub-tab-button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out, filter .3s ease-in-out;
    border-radius: 10px;
}

.hub-tab-button:hover:before {
    filter: blur(8px);
}

.hub-tab-button:active:after {
    background: transparent;
}

.hub-tab-button:hover:before {
    opacity: 1;
}

.hub-tab-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: rgba(17, 17, 17, 0.40);
    left: 3px;
    top: 3px;
    border-radius: 8px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.hub-nav-level2 { 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 0.8rem;
    padding: 1rem 0;
    min-height: 40px;
}
.hub-content-tab { 
    display: none; 
    gap: 1rem; 
    flex-wrap: wrap; 
    justify-content: center; 
}
.hub-content-tab.active { 
    display: flex; 
}

.hub-content-button {
    background: rgb(247,150,192);
    background: radial-gradient(circle, rgb(32, 255, 188) 0%, rgba(118,174,241,1) 100%);
    padding: 0.5rem 1.5rem;
    border: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    transition: all 1s ease; 
    border-radius: 8px;
    overflow: hidden;
}

.hub-content-button span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.hub-content-button:before,
.hub-content-button:after {
    position: absolute;
    content: "";
    height: 0%;
    width: 1px;
    box-shadow: -1px -1px 20px 0px #76aef1, -4px -4px 5px 0px #76aef1, 7px 7px 20px 0px rgba(0,0,0,.4), 4px 4px 5px 0px rgba(0,0,0,.3);
}
.hub-content-button:before { 
    right: 0; 
    top: 0; 
    transition: all 500ms ease; 
}
.hub-content-button:after { 
    left: 0; 
    bottom: 0; 
    transition: all 500ms ease; 
}

.hub-content-button span:before,
.hub-content-button span:after {
    position: absolute;
    content: "";
    box-shadow: -1px -1px 20px 0px #76aef1, -4px -4px 5px 0px #76aef1, 7px 7px 20px 0px rgba(0,0,0,.4), 4px 4px 5px 0px rgba(0,0,0,.3);
}
.hub-content-button span:before { 
    left: 0; 
    top: 0; 
    width: 0%; 
    height: 1px; 
    transition: all 500ms ease; 
}
.hub-content-button span:after { 
    right: 0; 
    bottom: 0; 
    width: 0%; 
    height: 1px; 
    transition: all 500ms ease; 
}

.hub-content-button:hover {
    background: #ffffff;
    color: #76aef1;
    box-shadow: none;
}
.hub-content-button:hover:before,
.hub-content-button:hover:after { 
    height: 100%; 
}
.hub-content-button:hover span:before,
.hub-content-button:hover span:after { 
    width: 100%; 
}

.hub-content-button.active {
    color: #2c3e50;
    box-shadow: none;
}
.hub-content-button.active:before,
.hub-content-button.active:after { 
    height: 100%; 
}
.hub-content-button.active span:before,
.hub-content-button.active span:after { 
    width: 100%; 
}

#hub-content-display { 
    width: 100%; 
    flex-grow: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 1rem 0; 
}
.page-title { 
    font-size: 2.5rem;
    font-weight: 600; 
    margin-bottom: 2rem; 
    color: var(--title-color); 
}
.info-container { 
    background-color: var(--info-container-bg); 
    border-radius: 12px; 
    padding: 2.5rem; 
    width: 100%; 
    max-width: 900px; 
    border: 1px solid var(--border-color); 
    
}
.info-container h3 { 
    font-size: 1.5rem; 
    margin-top: 1.5rem; 
    margin-bottom: 1rem; 
    border-bottom: 1px solid var(--border-color); 
    padding-bottom: 0.5rem; 
}
.info-container h3:first-child { 
    margin-top: 0; 
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.price-table th, .price-table td {
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border-color);
    text-align: left;
}
.terms-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.queue-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    align-items: flex-start;
}

.queue-column {
    flex: 1;
    min-width: 250px;
}


.queue-column h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    color: var(--title-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.queue-column ul {
    list-style: none;
    padding: 0;
}
.queue-container .queue-column ul li {
    padding: 8px 0;
    line-height: 1.5;
}

.queue-column ul li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--link-active-bg);
    transition: background-color 0.2s ease;
}

.about-flex { 
    display: flex; 
    align-items: flex-start; 
    gap: 2rem; 
    text-align: left; 
}
.profile-pic { 
    width: 130px; 
    height: 130px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 3px solid var(--link-active-bg); 
    flex-shrink: 0; 
}
.about-text { 
    flex-grow: 1; 
}

.contact-container { 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


#hub-content-display { 
    width: 100%; 
    flex-grow: 1; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 1rem 0; 
}
.page-title { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
    color: var(--title-color); 
    text-align: center; 
}

.gallery, .text-container, .queue-container { 
    width: 100%; 
    max-width: 900px; 
    margin: 0 auto; 
}
.slider-wrapper { 
    position: relative; 
    width: 100%; 
    max-width: 800px; 
    margin: 0 auto; 
}
.slider-container { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 16 / 9; 
    background-color: 
    var(--slider-bg); 
    border-radius: 12px; 
    overflow: hidden; 
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s;
    cursor: pointer;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}
.slider-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0,0,0,0.4); 
    color: white; 
    border: none; 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    z-index: 10; 
    cursor: pointer; 
}
.slide-counter { 
    position: absolute; 
    top: 1rem; 
    right: 1rem; 
    background: rgba(0,0,0,0.6); 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.9em; 
    z-index: 15; 
    color: #fff; 
}
.thumbnail-navigation { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-top: 1rem; 
}
.thumbnail-img { 
    width: 80px; 
    height: 45px; 
    object-fit: cover; 
    border-radius: 6px; 
    cursor: pointer; 
    border: 2px solid transparent; 
    opacity: 0.5; 
    transition: all 0.2s; 
}
.thumbnail-img.active, .thumbnail-img:hover { 
    opacity: 1; 
    border-color: var(--link-active-glow); 
}
.lightbox-overlay { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.9); 
    z-index: 9999; 
    justify-content: center; 
    align-items: center; 
}
.lightbox-overlay.active { 
    display: flex; 
}
.lightbox-content { 
    max-width: 90%; 
    max-height: 90%; 
}
.lightbox-close { 
    position: absolute; 
    top: 20px; 
    right: 35px; 
    color: #fff; 
    font-size: 40px; 
    cursor: pointer; 
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--contact-btn-text, #ffffff);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.contact-btn i {
    font-size: 1.5rem;
    margin-right: 12px;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-btn.reddit {
    background-color: #FF4500;
}

.contact-btn.x-twitter {
    background-color: #000000;
    color: #ffffff;
}

.contact-btn.discord {
    background-color: #5865F2;
}

.contact-btn.instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.contact-btn.twitch {
    background-color: #9146FF;
}

.contact-btn.github {
    background-color: #333;
    color: #ffffff;
}

.contact-btn.vgen {
    background-color: #00ff15;
}

#contact .contact-text {
    margin-bottom: 1.5rem;
}

#contact .contact-form {
    margin-top: 1.5rem;
}

#contact .contact-buttons {
    gap: 1.5rem 1rem;
}

#contact .contact-btn {
    width: calc(50% - 0.5rem);
    min-width: 0;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    justify-content: center;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.site-card {
    background-color: var(--info-container-bg, rgba(0, 0, 0, 0.2));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.site-banner {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.site-card-content {
    padding: 1.5rem;
    text-align: center;
}

.site-card-content h3 {
    font-size: 1.4rem;
    color: var(--title-color, #ffffff);
    margin-bottom: 1rem;
}

.site-visit-button {
    display: inline-block;
    background-color: var(--link-active-bg, #ff8c00);
    color: var(--contact-btn-text, #000);
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.site-visit-button:hover {
    background-color: var(--link-active-glow, #ffa500);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}
.about-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}
.page-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.page-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

.age-gate-box {
    background-color: var(--sidebar-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    text-align: center;
}

.age-gate-box h2 {
    font-size: 1.8rem;
    color: var(--title-color, var(--link-active-bg));
    margin-bottom: 1rem;
}

.age-gate-box p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.age-gate-btn {
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.age-gate-btn.primary {
    background-color: var(--link-active-bg);
    color: var(--contact-btn-text, #000);
}
.age-gate-btn.primary:hover {
    background-color: var(--link-active-glow);
    transform: scale(1.05);
}

.age-gate-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-color);
}
.age-gate-btn.secondary:hover {
    background-color: var(--border-color);
}
.commission-status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.status-label {
    font-weight: 300;
}

.status-badge {
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.status-badge.open {
    background-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.7);
}

.status-badge.closed {
    background-color: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.7);
}

.contact-form {
    width: 100%;
    max-width: 700px;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--link-active-bg);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.contact-form ::placeholder {
    color: rgba(245, 245, 245, 0.6);
}

.contact-form .submit-btn {
    background-color: var(--link-active-bg);
    color: var(--contact-btn-text, #000);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-form .submit-btn:hover {
    background-color: var(--link-active-glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 60px;
    background-color: var(--sidebar-bg);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 500;
}

.artist-name-mobile {
    font-size: 1.5rem;
    color: var(--text-color);
}

.hamburger-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}
.install-guide-button {
    display: inline-block;
    background-color: transparent;
    color: var(--link-active-bg, #ff8c00);
    border: 2px solid var(--link-active-bg, #ff8c00);
    font-weight: 600;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.install-guide-button:hover {
    background-color: var(--link-active-bg, #ff8c00);
    color: var(--contact-btn-text, #000);
}

.guide-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    background-color: var(--info-container-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.guide-steps {
    line-height: 1.8;
    margin: 1.5rem 0;
}

.guide-steps p {
    margin-bottom: 1rem;
}

.back-to-apps-btn {
    background-color: var(--link-active-bg);
    color: var(--contact-btn-text, #000);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    align-self: center;
    margin-top: 1rem;
}

.back-to-apps-btn:hover {
    background-color: var(--link-active-glow);
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    body {
        overflow-y: auto;
        display: block;
    }

    .mobile-header {
        display: flex;
    }
    .sidebar .artist-name {
        display: none;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        border-right: 1px solid var(--border-color);
        border-bottom: none;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        height: auto;
        min-height: calc(100vh - 60px);
    }


    .page {
        padding: 1.5rem; 
        justify-content: flex-start;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .info-container {
        padding: 1.5rem;
    }
    
    .hub-nav-level1 {
        gap: 0.5rem;
    }
    
    .hub-tab-button {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .hub-content-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .queue-container {
        flex-direction: column;
    }

    .about-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-pic {
        margin-bottom: 1rem;
    }
    .about-grid-container {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
        gap: 1.5rem;
    }
    .form-row {
        flex-direction: column;
    }
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}