@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;700;900&display=swap');

/* --- RESET & BACKGROUND --- */
body {
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Light grey */
    color: #333;
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HERO HEADER (Bright Gradient) --- */
header {
    background: linear-gradient(135deg, #FF0055, #FF5E62, #FF9966);
    padding: 50px 20px 110px 20px;
    text-align: center;
    color: white;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
    margin-bottom: -60px; /* Pulls content up */
    position: relative;
    z-index: 1;
}

.logo-img {
    width: 140px;
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #fff;
}

h1 {
    font-size: 42px;
    font-weight: 900;
    margin: 15px 0 0 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
h1 span { color: #FFD700; }

/* --- CONTAINER --- */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    position: relative;
    z-index: 10;
    flex: 1; /* Pushes footer down if page is short */
}

/* --- CARDS --- */
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e4e8;
}

/* Rainbow Line */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, #FF0055, #FF5E62, #FFD700, #00d4ff);
}

/* --- CONTENT --- */
.bio-text { color: #555; line-height: 1.6; font-size: 15px; }
.bio-text strong { color: #FF0055; }

.free-badge {
    background: #FFD700;
    color: #000;
    font-weight: 900;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* --- CHART STYLES --- */
.chart-header {
    text-align: left;
    margin: 40px 0 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.chart-header h2 { margin: 0; font-size: 24px; font-weight: 900; color: #222; }
.chart-header span { 
    background: #222; color: #fff; padding: 5px 10px; 
    border-radius: 6px; font-size: 11px; font-weight: 700; 
}

.chart-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
    border-left-width: 6px;
    border-left-style: solid;
}
.chart-item:hover { transform: scale(1.02); }

/* Colors */
.rank-1-box { border-left-color: #FF0055; background: linear-gradient(90deg, #fff0f5, #fff); }
.rank-2-box { border-left-color: #FF5E62; }
.rank-3-box { border-left-color: #FFD700; }
.rank-rest-box { border-left-color: #00d4ff; }

.rank { font-size: 20px; font-weight: 900; color: #ccc; width: 40px; text-align: center; }
.rank-1-num { color: #FF0055; font-size: 30px; }
.rank-top-3 { color: #333; }

.info { text-align: left; margin-left: 10px; }
.title { display: block; font-weight: 800; font-size: 16px; color: #333; }
.artist { display: block; font-size: 13px; color: #888; margin-top: 3px; font-weight: 500; text-transform: uppercase; }

/* --- FORM --- */
input, select, textarea {
    width: 100%; padding: 15px; margin-bottom: 15px;
    background: #f8f9fa; border: 2px solid #e9ecef;
    border-radius: 10px; font-family: 'Outfit', sans-serif;
    font-size: 14px; box-sizing: border-box;
}
input:focus, select:focus, textarea:focus { background: #fff; border-color: #FF0055; outline: none; }
button {
    width: 100%; background: linear-gradient(90deg, #FF0055, #FF5E62);
    color: #fff; padding: 18px; border: none; border-radius: 50px;
    font-weight: 900; font-size: 16px; text-transform: uppercase;
    cursor: pointer; box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3);
}

/* --- FOOTER --- */
.site-footer {
    background: #111;
    color: #888;
    padding: 60px 20px;
    margin-top: 80px;
    text-align: center;
    border-top: 6px solid #FF0055;
    position: relative;
    z-index: 20;
}
.site-footer h3 { color: #fff; font-size: 20px; font-weight: 900; margin: 0 0 20px 0; }

/* Cute Media Logo Style */
.cute-logo {
    display: block;
    max-width: 120px; /* Logo size */
    height: auto;
    margin: 0 auto 20px auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.cute-logo:hover { opacity: 1; }

.footer-links a { color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; margin: 0 15px; opacity: 0.7; }
.footer-links a:hover { color: #FF0055; opacity: 1; }
.copyright-text { font-size: 11px; color: #555; line-height: 1.6; max-width: 600px; margin: 30px auto 0 auto; }