* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
    scroll-behavior: smooth;
}

/* =========================================
    Custom Scrollbar Styles
   ========================================= */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 223, 0, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 223, 0, 0.6);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 223, 0, 0.3) rgba(0, 0, 0, 0.2);
}

:root {
    --bg-color: #030408; 
    --glow-color: #ffdf00;
    --text-light: #e0e6ed;
    --nav-bg: rgba(3, 4, 8, 0.95);
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 223, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links a.active, 
.nav-link.active {
    color: var(--glow-color) !important;
    text-shadow: 0 0 15px var(--glow-color) !important;
    opacity: 1 !important;
    font-weight: bold !important;
}

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 5px var(--glow-color));
    transition: 0.3s;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px var(--glow-color));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--glow-color);
    text-shadow: 0 0 8px var(--glow-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--glow-color);
}

.banner-container {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.page-section {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-section {
    padding-top: 40px;
    padding-bottom: 20px;
    min-height: auto;
}

.hero-desc {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 30px;
    font-style: italic;
    color: #ccc;
}

h1, h2 {
    color: var(--glow-color);
    text-shadow: 0 0 15px rgba(255, 223, 0, 0.4);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

h2 { 
    font-size: 2.5rem; 
    border-bottom: 1px solid rgba(255, 223, 0, 0.3); 
    padding-bottom: 10px; 
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 35px;
    background: transparent;
    color: var(--glow-color);
    border: 1px solid var(--glow-color);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.2);
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--glow-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--glow-color);
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 80px;
        background-color: var(--nav-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        border-left: 1px solid rgba(255, 223, 0, 0.2);
    }

    .nav-links li {
        margin: 25px 0;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

}

/* =========================================
    Demo Music Section
   ========================================= */

.demo-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;   
    justify-content: center; 
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-card {
    flex: 0 1 calc(50% - 20px); 
    min-width: 350px; 
    max-width: 500px;
    
    display: flex;
    flex-direction: row; 
    align-items: center;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 223, 0, 0.1);
    transition: 0.3s;
    gap: 15px;
}

.demo-card img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0; 
}

.demo-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.demo-info h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2px;
}

.demo-info p {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.demo-info audio {
    width: 100%;
    height: 30px;
    filter: invert(90%) hue-rotate(180deg);
}

@media screen and (max-width: 480px) {
    .demo-card {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .demo-info {
        width: 100%; 
        align-items: center; 
        margin-top: 15px;
    }

    .demo-info audio {
        width: 100% !important; 
        max-width: 100%;
    }
}

/* =========================================
   Services Section Styles
   ========================================= */

.services-section {
    padding-top: 120px; 
    min-height: 100vh;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a0aab5;
    margin-bottom: 50px;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: rgba(255, 223, 0, 0.6); 
    box-shadow: 0 10px 30px rgba(255, 223, 0, 0.15); 
    transform: translateY(-5px); 
    background: rgba(255, 255, 255, 0.05);
}

.icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--glow-color); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 223, 0, 0.4));
    transition: transform 0.3s ease;
}

.service-card:hover .icon-container svg {
    transform: scale(1.1); 
}

.service-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: none;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--glow-color);
}

.service-card p {
    color: #8892b0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   Contact Section Styles
   ========================================= */

.contact-section {
    padding-top: 120px;
    min-height: 100vh;
}

.contact-container {
    display: flex;
    gap: 60px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
}

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

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--glow-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-desc {
    color: #a0aab5;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.info-item svg {
    width: 26px;
    height: 26px;
    color: var(--glow-color);
    filter: drop-shadow(0 0 5px rgba(255, 223, 0, 0.3));
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    color: var(--bg-color);
    background: var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-5px);
    border-color: var(--glow-color);
}

.contact-form-wrapper {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit; 
}

input::placeholder, textarea::placeholder {
    color: #666;
}

input:focus, textarea:focus {
    border-color: var(--glow-color);
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

textarea {
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    cursor: pointer;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .input-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* =========================================
   Portfolio Section Styles
   ========================================= */

.portfolio-section {
    padding-top: 120px;
    min-height: 100vh;
}

.portfolio-category {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.mt-50 {
    margin-top: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.category-header h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0;
}

.category-header svg {
    width: 30px;
    height: 30px;
}

.youtube-icon {
    color: #ff0000; 
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.ig-icon {
    color: #e1306c; 
    filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.5));
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 5px 20px rgba(255, 223, 0, 0.15);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    border-radius: 8px;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.reel-card {
    width: 100%;
    max-width: 350px; 
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reel-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 5px 20px rgba(255, 223, 0, 0.15);
}


@media screen and (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .reels-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
    Footer Styles
   ========================================= */
footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #020305; 
    border-top: 1px solid rgba(255, 223, 0, 0.15);
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
    margin-top: 60px;
}

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


.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px; 
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #8892b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--glow-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-logo img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 5px var(--glow-color));
}

#lang-select {
    background: transparent;
    color: #8892b0;
    border: 1px solid rgba(255, 223, 0, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

#lang-select:hover {
    border-color: var(--glow-color);
    color: var(--glow-color);
}

/* =========================================
   Language Switcher Styles
   ========================================= */
.lang-switcher {
    margin-top: 15px;
}

#lang-select {
    background-color: rgba(255, 255, 255, 0.05);
    color: #e0e6ed;
    border: 1px solid rgba(255, 223, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    transition: 0.3s ease;

    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%23ffdf00%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 12px top 50%;
    background-size: 10px auto;
    padding-right: 35px;
}

#lang-select:hover, #lang-select:focus {
    border-color: rgba(255, 223, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
}

#lang-select option {
    background-color: #030408;
    color: #e0e6ed;
}

.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 8, 0.7);
    backdrop-filter: blur(4px);
}

.music-player-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(255, 223, 0, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.player-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.player-btn {
    background: none;
    border: none;
    color: var(--glow-color);
    cursor: pointer;
    font-size: 1.2rem;
}
.track-info {
    display: flex;
    flex-direction: column;
}
.status-tag {
    font-size: 0.6rem;
    color: var(--glow-color);
    letter-spacing: 2px;
    font-weight: bold;
}
.track-name {
    font-size: 0.8rem;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-content {
    position: relative;
    z-index: 10;
    color: white;
}
.avatar-glow img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--glow-color);
    box-shadow: 0 0 20px rgba(255, 223, 0, 0.4);
}

/* =========================================
   Legal Pages Style
   ========================================= */
.legal-container {
    max-width: 800px;
    margin: 100px auto; 
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 223, 0, 0.1);
    color: var(--text-light);
}

.legal-title {
    color: var(--glow-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h3 {
    color: var(--glow-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: left;
}

.legal-content p, .legal-content li {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #cbd5e1;
    text-align: left;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    text-align: left;
}

/* =========================================
    Ultimate Modern Language Selector
   ========================================= */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#lang-select {
    appearance: none; 
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.05); 
    color: var(--text-light);
    border: 1px solid rgba(255, 223, 0, 0.3); 
    padding: 6px 30px 6px 15px; 
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.lang-switcher::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--glow-color);
    position: absolute;
    right: 12px;
    pointer-events: none;
    opacity: 0.7;
}

#lang-select:hover {
    background: rgba(255, 223, 0, 0.1);
    border-color: var(--glow-color);
    box-shadow: 0 0 15px rgba(255, 223, 0, 0.2);
}

#lang-select option {
    background: #030408;
    color: white;
}

/* =========================================
    Product
   ========================================= */

.products-section {
    padding: 60px 20px;
    text-align: center;
    background: #0a0a0a;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.product-card {
    background: #141414;
    border: 1px solid #d4af37;
    border-radius: 12px;
    width: 320px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.product-image {
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #222;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.4;
}

.product-info .description {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto; 
    padding-top: 10px;
}

.product-footer .price {
    font-size: 22px;
    font-weight: bold;
    color: #d4af37;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa8515 100%);
    color: #000000 !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-gold:hover {
    opacity: 0.9;
}

/* ==========================================
   Login/Register Dropdown Styles
   ========================================== */
.btn-signin {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: linear-gradient(135deg, #d4af37 0%, #aa8515 100%);
    color: #000000; 
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5); 
    transform: translateY(-1px);
}
.nav-auth-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto; 
    margin-right: 20px; 
}

.btn-gold-small {
    background: linear-gradient(135deg, #d4af37 0%, #aa8515 100%);
    color: #000000 !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.user-menu-container {
    position: relative;
    display: inline-block;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.user-trigger:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.user-icon {
    font-style: normal;
}

.dropdown-menu {
    display: none; 
    position: absolute;
    right: 0;
    top: calc(100% + 10px); 
    width: 250px;
    background-color: #0a0a0a;
    border: 1px solid #1c1c1c;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    z-index: 1100;
}

.dropdown-menu.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

.user-info-header {
    padding: 5px 20px 10px 20px;
    display: flex;
    flex-direction: column;
}

.username {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.user-email {
    color: #666666;
    font-size: 12px;
    margin-top: 2px;
}

.dropdown-divider {
    border: 0;
    border-top: 1px solid #1c1c1c;
    margin: 8px 0;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #141414;
    color: #d4af37; 
    padding-left: 24px; 
}

.logout-btn {
    color: #ff5c5c;
}

.logout-btn:hover {
    background-color: rgba(255, 92, 92, 0.08);
    color: #ff5c5c;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-control {
    width: 100%;
    background: #141419; 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 6px;
    padding: 10px 14px;
    color: #fff;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    cursor: pointer;

    color-scheme: dark; 
}

.form-control option {
    background-color: #141419 !important;
    color: #ffffff !important;
    padding: 10px;
}

