@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&display=swap');

/* ──────────────────────────────────────────
   TOKENS & DESIGN SYSTEM
   Premium Dark Mode Palette
   ────────────────────────────────────────── */
:root {
    --bg:            #0a0c10;
    --surface:       #12161c;
    --surface-2:     #1c2128;
    --border:        #2d333b;
    --border-hover:  #ff9900;

    --accent:        #ff9900;
    --accent-light:  #ffb347;
    --gold:          #f0c14b;
    --gold-dark:     #c9a227;

    --text:          #f0f6fc;
    --text-muted:    #8b949e;
    --price:         #ff9900;

    --rank-gold:     #f8d12f;
    --rank-silver:   #adb5bd;
    --rank-bronze:   #d97706;

    --glow:          0 0 25px rgba(255,153,0,0.2);
    --glow-strong:   0 0 45px rgba(255,153,0,0.4);
    --shadow-card:   0 10px 30px rgba(0,0,0,0.7);
    --shadow-hover:  0 20px 50px rgba(0,0,0,0.9);

    --radius:        18px;
    --radius-sm:     10px;
    --transition:    0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ──────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
  
    background-image: 
        radial-gradient(circle at 50% -20%, rgba(255,153,0,0.08), transparent 50%),
        linear-gradient(rgba(255,153,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,153,0,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
}

/* ──────────────────────────────────────────
   NAVBAR (Glassmorphism & Scrollable)
   ────────────────────────────────────────── */
.navbar {
    background: rgba(70, 60, 23, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: sticky;
    top: 2px;
    z-index: 1000;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    width: auto;
    margin-left: 0.5%;
    margin-right:auto;
}

.navbar::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.navbar a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.70em;
    padding: 10px 20px;
    border-radius: 24px;
    transition: all var(--transition);
    white-space: nowrap;
    display:flex;
    align-items: center;
    gap: 1%;
    border: 1px solid transparent;
    width: 99%;
}

.navbar a i {
    font-size: 1.25em;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.navbar a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar a:hover i {
    transform: translateY(-2px) scale(1.1);
}

.navbar a.active {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 153, 0, 0.4);
    font-weight: 700;
}

.navbar a.active i {
    opacity: 1;
    color: #000;
}

/* ──────────────────────────────────────────
   CONTAINER & LAYOUT
   ────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px 80px;
}

/* ──────────────────────────────────────────
   HEADING & INTRO
   ────────────────────────────────────────── */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-align: center;
    font-size: clamp(2.2em, 5vw, 3.5em);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: linear-gradient(to right, #fff 20%, var(--accent) 50%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 i {
    font-size: 0.8em;
    -webkit-text-fill-color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(255,153,0,0.5));
    margin-bottom: 5px;
}

.intro {
    text-align: center;
    margin: 0 auto 50px;
    font-size: 1.15em;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.8;
}

/* ──────────────────────────────────────────
   DISCLAIMER
   ────────────────────────────────────────── */
.disclaimer-notice {
    background: rgba(45, 51, 59, 0.4);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin: 0 auto 50px;
    max-width: 800px;
    font-size: 0.88em;
    color: var(--text-muted);
    text-align: center;
    backdrop-filter: blur(4px);
}

/* ──────────────────────────────────────────
   PRODUCT CARDS (Standardized)
   ────────────────────────────────────────── */
.top-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.top-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.03), transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.top-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-hover), var(--glow);
    border-color: rgba(255, 153, 0, 0.4);
}

.top-item:hover::after {
    transform: translateX(100%);
}

/* Rank Number styling */
.number {
    font-family: 'Montserrat', sans-serif;
    font-size: 5em;
    font-weight: 900;
    margin-right: 40px;
    min-width: 100px;
    text-align: center;
    opacity: 0.1;
    line-height: 1;
    letter-spacing: -4px;
    transition: all var(--transition);
}

.top-item:nth-child(even) .number { order: 3; margin-right: 0; margin-left: 40px; }

.top-item:nth-child(n+1):nth-child(-n+3) .number {
    opacity: 0.4;
}

.top-item:nth-child(1) .number { color: var(--rank-gold);   text-shadow: 0 0 20px rgba(248, 209, 47, 0.3); }
.top-item:nth-child(2) .number { color: var(--rank-silver); text-shadow: 0 0 20px rgba(173, 181, 189, 0.3); }
.top-item:nth-child(3) .number { color: var(--rank-bronze); text-shadow: 0 0 20px rgba(217, 119, 6, 0.3); }

.top-item:hover .number {
    opacity: 1;
    transform: scale(1.1);
}

/* ──────────────────────────────────────────
   CARD CONTENT
   ────────────────────────────────────────── */
.content { flex: 1; min-width: 0; position: relative; z-index: 2; }

.title { 
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.5px;
}

.desc {
    color: var(--text-muted);
    font-size: 1.05em;
    margin-bottom: 24px;
    line-height: 1.7;
}

.price {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

/* ──────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────── */
.buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #000;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 850;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
}

.buy-btn i {
    font-size: 1.2em;
}

.buy-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
    filter: brightness(1.1);
}

/* ──────────────────────────────────────────
   IMAGES
   ────────────────────────────────────────── */
img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin-left: 40px;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.top-item:nth-child(even) img { order: 1; margin-left: 0; margin-right: 40px; }
.top-item:nth-child(even) .content { order: 2; }

.top-item:hover img {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.footer-info {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.footer-info a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 992px) {
    .top-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .top-item:nth-child(even) img, .top-item:nth-child(even) .number {
        order: unset;
        margin: 0 0 20px 0;
    }
    img, .number {
        margin: 0 0 20px 0 !important;
    }
    .number { font-size: 3.5em; }
    img { max-width: 240px; }
}

@media (max-width: 576px) {
    .navbar { padding: 0 10px; height: 56px; }
    .navbar a { padding: 8px 14px; font-size: 0.82em; }
    h1 { font-size: 2em; }
    .top-item { padding: 20px; }
}

.musica {
    position: relative
    bottom: 20px;
    right: 20px;
    align-items: center;
    display: block;
    border: #1c2128 solid 1px;
    border-radius: 12px;
    align-items: center;
    margin-left: 50%;
   
    transition: all var(--transition);
    width: auto;
    height: auto;
   background: var(--bg);

}
