* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #05070d;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
}

header {
    width: 100%;
    min-height: 90px;
    padding: 25px 8%;
    background: rgba(5, 7, 13, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 240, 255, 0.25);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 52px;
    font-weight: 800;
    color: #00f0ff;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.logo span {
    color: #00f0ff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

nav a:hover {
    color: #00f0ff;
}

.language-switch {
    font-size: 16px;
    color: #cccccc;
}

section {
    min-height: 80vh;
    padding: 120px 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer {
    padding: 35px 8%;
    text-align: center;
    color: #aaaaaa;
    background: #030409;
}

.hero {
    min-height: calc(100vh - 90px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    padding-top: 80px;
}

.hero-label {
    color: #d7b56d;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(64px, 9vw, 140px);
    line-height: 0.9;
    letter-spacing: 8px;
    color: #ffffff;
}

.hero h2 {
    font-size: clamp(26px, 3vw, 42px);
    color: #d7d7d7;
    margin-top: 22px;
    margin-bottom: 22px;
}

.hero-text {
    max-width: 720px;
    font-size: clamp(24px, 2.4vw, 34px);
    color: #f1f1f1;
    line-height: 1.35;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.btn.primary {
    background: #d7b56d;
    color: #05070d;
}

.btn.secondary {
    border: 1px solid #d7b56d;
    color: #ffffff;
}

.hero-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-socials a {
    color: #bfc6d4;
    text-decoration: none;
    font-size: 17px;
}

.hero-socials a:hover {
    color: #00f0ff;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: min(420px, 100%);
    min-height: 520px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top, rgba(0, 240, 255, 0.25), transparent 35%),
        linear-gradient(145deg, #111827, #05070d);
    border: 1px solid rgba(215, 181, 109, 0.35);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
}

.visual-card span {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #d7b56d;
}

.visual-card p {
    font-size: 22px;
    color: #ffffff;
    margin-top: 12px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.12), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(215, 181, 109, 0.12), transparent 35%),
        #05070d;
}

.visual-card {
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-card::after {
    content: "PRODUCER • SONGWRITER • ARTIST";
    position: absolute;
    top: 38px;
    left: 38px;
    right: 38px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-bottom: 35px;
}

.highlight-box {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(215, 181, 109, 0.22);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 950px) {
    header {
        flex-direction: column;
        gap: 18px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 70px;
    }

    .hero-text,
    .hero-highlights {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-socials {
        justify-content: center;
    }

    .visual-card {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 18px;
    }

    header {
        padding: 20px 5%;
    }

    section {
        padding: 80px 5%;
    }

    .logo {
        font-size: 28px;
    }

    nav a {
        font-size: 16px;
    }

    .hero h1 {
        letter-spacing: 4px;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }
}

.artist-card {
    width: min(420px, 100%);
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(215, 181, 109, 0.35);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    background: #111827;
}

.artist-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 55%);
}

.artist-card-content {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    z-index: 2;
}

.artist-card-content span {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #d7b56d;
}

.artist-card-content p {
    font-size: 20px;
    color: #ffffff;
    margin-top: 10px;
}

.hero-socials a {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-socials a:hover {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.45);
}

.about-section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    color: #d7b56d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 18px;
}

.section-header h2 {
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.1;
    max-width: 900px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 24px;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 30px;
}

.about-facts {
    display: grid;
    gap: 18px;
}

.about-facts div {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(215,181,109,0.20);
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 950px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text p {
        font-size: 20px;
    }
}

.music-section {
    max-width: 1400px;
    margin: 0 auto;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.music-card {
    min-height: 240px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(215, 181, 109, 0.22);
    text-decoration: none;
    color: #ffffff;
    transition: 0.25s ease;
}

.music-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.45);
    background: rgba(0, 240, 255, 0.08);
}

.music-card span {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #d7b56d;
    margin-bottom: 22px;
}

.music-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #e5e5e5;
}

@media (max-width: 1100px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .music-grid {
        grid-template-columns: 1fr;
    }
}

.demos-section {
    max-width: 1400px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.demo-card {
    min-height: 260px;
    padding: 30px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(215, 181, 109, 0.22);
}

.demo-card h3 {
    font-size: 30px;
    color: #d7b56d;
    margin-bottom: 20px;
}

.demo-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #e5e5e5;
}

@media (max-width: 1100px) {
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }
}

.producers-section {
    max-width: 1400px;
    margin: 0 auto;
}

.producer-box {
    padding: 45px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0, 240, 255, 0.10), transparent 35%),
        rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(215, 181, 109, 0.22);
}

.producer-box p {
    font-size: 24px;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 28px;
    max-width: 1100px;
}

.producer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.producer-features div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 950px) {
    .producer-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .producer-box {
        padding: 30px;
    }

    .producer-box p {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .producer-features {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info,
.contact-form {
    padding: 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(215, 181, 109, 0.22);
}

.contact-info h3 {
    font-size: 34px;
    color: #d7b56d;
    margin-bottom: 22px;
}

.contact-info p {
    font-size: 22px;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 30px;
}

.contact-items {
    display: grid;
    gap: 18px;
}

.contact-items div {
    font-size: 19px;
    color: #ffffff;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
}

.contact-form form {
    display: grid;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.28);
    color: #ffffff;
    font-size: 18px;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    padding: 18px 28px;
    border: none;
    border-radius: 999px;
    background: #d7b56d;
    color: #05070d;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 950px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(0, 240, 255, 0.10), transparent 35%),
        #05070d;
}

.success-box {
    max-width: 720px;
    padding: 55px;
    border-radius: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(215, 181, 109, 0.25);
}

.success-box h1 {
    font-size: clamp(46px, 7vw, 90px);
    margin-bottom: 22px;
}

.success-box p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #e8e8e8;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-switch button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.language-switch button:hover {
    color: #00f0ff;
}

.language-switch span {
    color: rgba(255,255,255,0.5);
}

.producer-cta {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.producer-cta p {
    font-size: 22px;
    margin-bottom: 25px;
    color: #f0f0f0;
}

.featured-tracks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.featured-track {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(215,181,109,0.25);
}

.featured-track img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.featured-track h3 {
    font-size: 24px;
    color: #d7b56d;
    margin-bottom: 18px;
}

.featured-track audio {
    width: 100%;
}

.track-list {
    display: grid;
    gap: 16px;
}

.track-item {
    display: grid;
    grid-template-columns: 70px 1fr 320px;
    gap: 20px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
}

.track-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.track-item span {
    font-size: 19px;
    font-weight: 700;
}

.track-item audio {
    width: 100%;
}

@media (max-width: 1000px) {
    .featured-tracks {
        grid-template-columns: 1fr;
    }

    .track-item {
        grid-template-columns: 60px 1fr;
    }

    .track-item audio {
        grid-column: 1 / -1;
    }
}

.site-footer {
    margin-top: 120px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.site-footer p {
    color: #bdbdbd;
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d7b56d;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00f0ff;
}

.legal-page {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.legal-box {
    max-width: 1100px;
    width: 100%;
    padding: 50px;
    border-radius: 28px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(215,181,109,0.22);
}

.legal-box h1 {
    font-size: clamp(42px, 6vw, 80px);
    margin-bottom: 40px;
}

.legal-box h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #d7b56d;
    font-size: 28px;
}

.legal-box p {
    font-size: 20px;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.legal-box .btn {
    margin-top: 30px;
    display: inline-block;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.whatsapp-btn{
    padding:10px 18px;
    border:1px solid #d8b25a;
    border-radius:30px;
    color:#d8b25a;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#d8b25a;
    color:#000;
}

.nav-gold {
    color: #d7b56d !important;
    font-weight: 800;
}

.nav-gold:hover {
    color: #00f0ff !important;
}

.library-body {
    background: #05070d;
    color: #ffffff;
}

.library-page {
    max-width: 1500px;
    margin: 0 auto;
}

.library-hero {
    min-height: auto;
    padding: 120px 8% 60px;
}

.library-hero h1 {
    font-size: clamp(46px, 7vw, 96px);
    line-height: 1;
    margin-bottom: 24px;
}

.library-hero p {
    max-width: 980px;
    font-size: clamp(20px, 2.1vw, 28px);
    color: #e8e8e8;
    line-height: 1.55;
}

.library-toolbar {
    min-height: auto;
    padding: 0 8% 45px;
    border-bottom: none;
}

.library-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.library-filter {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(215,181,109,0.4);
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.library-filter.active,
.library-filter:hover {
    background: #d7b56d;
    color: #05070d;
}

.library-grid {
    padding: 0 8% 160px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.library-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(215,181,109,0.22);
    box-shadow: 0 20px 70px rgba(0,0,0,0.28);
}

.library-cover {
    position: relative;
    height: 220px;
    background: #111827;
}

.library-cover img,
.library-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.library-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(5,7,13,0.82);
    color: #d7b56d;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.library-card-content {
    padding: 24px;
}

.library-card-content h2 {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 10px;
    color: #ffffff;
}

.library-card-content p {
    font-size: 15px;
    color: #cfd6e4;
    margin-bottom: 12px;
}

.library-card-content strong {
    display: block;
    color: #d7b56d;
    font-size: 21px;
    margin-bottom: 18px;
}

.library-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.library-btn {
    border: none;
    border-radius: 999px;
    padding: 11px 17px;
    background: #d7b56d;
    color: #05070d;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.library-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(215,181,109,0.45);
}

.library-btn:hover {
    opacity: 0.88;
}

.library-empty {
    grid-column: 1 / -1;
    padding: 35px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(215,181,109,0.22);
    color: #d7b56d;
    font-size: 20px;
}

.library-player {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 5000;
    display: grid;
    grid-template-columns: 90px 1fr 44px;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(5,7,13,0.96);
    border: 1px solid rgba(215,181,109,0.35);
    box-shadow: 0 20px 80px rgba(0,0,0,0.55);
    backdrop-filter: blur(16px);
}

.library-player.is-hidden {
    display: none;
}

.library-player-cover img {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
}

.library-player-main {
    display: grid;
    gap: 8px;
}

.library-player-main strong {
    color: #ffffff;
    font-size: 18px;
}

.library-player-main span {
    color: #d7b56d;
    font-size: 14px;
}

.library-player audio,
.library-player video {
    width: 100%;
    max-height: 240px;
}

.player-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .library-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .library-player {
        grid-template-columns: 70px 1fr 38px;
    }

    .library-player-cover img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 600px) {
    .library-grid {
        grid-template-columns: 1fr;
        padding-bottom: 190px;
    }

    .library-hero,
    .library-toolbar,
    .library-grid {
        padding-left: 5%;
        padding-right: 5%;
    }

    .library-player {
        left: 10px;
        right: 10px;
        bottom: 10px;
        grid-template-columns: 1fr 38px;
    }

    .library-player-cover {
        display: none;
    }
}

.library-player {
    grid-template-columns: 90px 1fr 44px;
    align-items: start;
}

.library-player-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.library-player-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.player-control-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(215,181,109,0.45);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.player-control-btn.main {
    background: #d7b56d;
    color: #05070d;
    font-weight: 900;
}

.player-control-btn:hover {
    background: #d7b56d;
    color: #05070d;
}

.custom-progress-row {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    gap: 12px;
    align-items: center;
    color: #d7b56d;
    font-size: 14px;
}

#player-progress,
#player-volume {
    width: 100%;
    cursor: pointer;
}

.custom-volume-row {
    display: grid;
    grid-template-columns: 34px 180px;
    gap: 10px;
    align-items: center;
}

#main-audio-player {
    display: none;
}

#main-video-player {
    width: 100%;
    max-height: 260px;
    border-radius: 16px;
    background: #000;
}

@media (max-width: 700px) {
    .library-player-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-volume-row {
        grid-template-columns: 34px 1fr;
    }
}

.player-control-btn.active {
    background: #d7b56d;
    color: #05070d;
    box-shadow: 0 0 18px rgba(215,181,109,0.45);
}

.library-tools {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 16px;
    margin-bottom: 22px;
}

.library-search,
.library-sort {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(215,181,109,0.35);
    background: rgba(255,255,255,0.055);
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.library-search::placeholder {
    color: rgba(255,255,255,0.55);
}

.library-sort option {
    background: #05070d;
    color: #ffffff;
}

@media (max-width: 700px) {
    .library-tools {
        grid-template-columns: 1fr;
    }
}

.library-favorite-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(215,181,109,0.5);
    background: rgba(5,7,13,0.82);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 4;
}

.library-favorite-btn.active {
    background: #d7b56d;
    color: #05070d;
}

.library-queue {
    padding: 0 8% 160px;
    max-width: 1500px;
    margin: 0 auto;
}

.library-queue h2 {
    color: #d7b56d;
    font-size: 34px;
    margin-bottom: 22px;
}

.queue-list {
    display: grid;
    gap: 12px;
}

.queue-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(215,181,109,0.22);
}

.queue-item strong {
    color: #ffffff;
    font-size: 17px;
}

.queue-item span {
    color: #d7b56d;
    font-size: 14px;
}

.queue-btn {
    border: none;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    cursor: pointer;
}

.queue-btn:hover {
    background: #d7b56d;
    color: #05070d;
}

.queue-empty {
    color: #bfc6d4;
    font-size: 17px;
}

.auth-body {
    background: #05070d;
    color: #ffffff;
}

.auth-page {
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 80px;
}

.auth-box {
    width: 100%;
    max-width: 560px;
    min-height: auto;
    padding: 45px;
    border-radius: 28px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(215,181,109,0.28);
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.auth-box h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 30px;
}

.auth-form {
    display: grid;
    gap: 20px;
}

.auth-form label {
    display: grid;
    gap: 8px;
    color: #d7b56d;
    font-size: 16px;
    font-weight: 700;
}

.auth-form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.32);
    color: #ffffff;
    font-size: 18px;
}

.auth-links {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.auth-links a {
    color: #d7b56d;
    text-decoration: none;
    font-size: 16px;
}

.auth-links a:hover {
    color: #00f0ff;
}

.account-page {
    min-height: 100vh;
    padding: 120px 8% 100px;
    background: #05070d;
}

.account-hero {
    min-height: auto;
    padding: 0 0 60px;
    border-bottom: none;
}

.account-hero h1 {
    font-size: clamp(46px, 7vw, 96px);
    margin-bottom: 20px;
}

.account-hero p {
    max-width: 900px;
    font-size: 22px;
    color: #e8e8e8;
}

.account-grid {
    min-height: auto;
    padding: 0;
    border-bottom: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.account-card {
    padding: 32px;
    border-radius: 24px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(215,181,109,0.25);
}

.account-card h2 {
    color: #d7b56d;
    font-size: 28px;
    margin-bottom: 16px;
}

.account-card p {
    font-size: 18px;
    color: #e8e8e8;
    margin-bottom: 22px;
}

@media (max-width: 1000px) {
    .account-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

.library-user-status {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(215,181,109,0.25);
    color: #d7b56d;
    font-size: 16px;
    font-weight: 700;
}

.admin-table-section {
    min-height: auto;
    padding: 0;
    border-bottom: none;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(215,181,109,0.25);
    border-radius: 18px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    font-size: 15px;
}

.admin-table th {
    color: #d7b56d;
    background: rgba(255,255,255,0.06);
}

.admin-table td {
    color: #ffffff;
}

.admin-inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-action-btn {
    border: none;
    border-radius: 999px;
    padding: 8px 12px;
    background: #d7b56d;
    color: #05070d;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.admin-action-btn.danger {
    background: rgba(255,80,80,0.85);
    color: #ffffff;
}

.account-data-section {
    min-height: auto;
    padding: 60px 0 0;
    border-bottom: none;
}

.account-data-section h2 {
    color: #d7b56d;
    font-size: 34px;
    margin-bottom: 22px;
}

.account-data-section p {
    color: #e8e8e8;
    font-size: 18px;
}

.account-list {
    display: grid;
    gap: 14px;
}

.account-list-item {
    display: grid;
    grid-template-columns: 1.4fr 0.5fr 0.5fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(215,181,109,0.22);
}

.account-list-item strong {
    color: #ffffff;
}

.account-list-item span {
    color: #d7b56d;
}

@media (max-width: 800px) {
    .account-list-item {
        grid-template-columns: 1fr;
    }
}

.admin-success-message {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(80, 255, 160, 0.12);
    border: 1px solid rgba(80, 255, 160, 0.35);
    color: #7dffb2;
    font-size: 17px;
    font-weight: 800;
}