:root {
    --bg-black: #121212;
    --card-bg: #181818;
    --spotify-pink: #ff4d8d;
    --text-white: #ffffff;
    --main-font: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--main-font);
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000;
    position: sticky; top: 0; z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; color: var(--spotify-pink); }

nav ul { display: flex; list-style: none; gap: 20px; align-items: center; }
nav a { text-decoration: none; color: white; transition: 0.3s; }
nav a:hover { color: var(--spotify-pink); }

.login-btn {
    background: var(--spotify-pink); color: white; border: none;
    padding: 8px 20px; border-radius: 20px; cursor: pointer;
}


.hero-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ff4d8d22, #121212);
}
.responsive-title { font-size: 3.5rem; margin-bottom: 10px; }

.feature-box {
    background: var(--card-bg); padding: 30px;
    border-radius: 15px; border: 1px solid #333; text-align: center;
    transition: 0.3s;
}
.text-pink { color: var(--spotify-pink); }


.artist-card {
    background: var(--card-bg); padding: 20px;
    border-radius: 15px; text-align: center; transition: 0.3s;
}
.artist-card:hover { background: #282828; transform: translateY(-5px); }
.artist-card img {
    width: 140px; height: 140px; border-radius: 50%;
    object-fit: cover; margin-bottom: 15px; border: 2px solid transparent;
}
.artist-card:hover img { border-color: var(--spotify-pink); }

.filter-btn {
    background: transparent; border: 1px solid var(--spotify-pink);
    color: white; padding: 7px 20px; margin: 5px;
    border-radius: 20px; cursor: pointer; transition: 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: var(--spotify-pink); }


.custom-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); display: none;
    justify-content: center; align-items: center; z-index: 2000;
}
.modal-content {
    background: #181818; padding: 40px; border-radius: 20px;
    border: 1px solid var(--spotify-pink); width: 320px; position: relative; text-align: center;
}
.modal-content input {
    width: 100%; padding: 10px; margin-bottom: 15px;
    background: #000; border: 1px solid #333; color: white;
}
.close-modal { position: absolute; top: 10px; right: 15px; font-size: 25px; cursor: pointer; }


.contact-form-container {
    max-width: 500px; margin: 0 auto; background: var(--card-bg);
    padding: 40px; border-radius: 20px; border: 1px solid #333;
}
.form-control {
    width: 100%; padding: 12px; background: #000; border: 1px solid #333;
    color: white; margin-bottom: 5px; border-radius: 5px;
}
.error-text { color: var(--spotify-pink); font-size: 11px; display: none; }

.btn-pink-full {
    background: var(--spotify-pink); color: white; border: none;
    width: 100%; padding: 12px; border-radius: 25px; font-weight: bold; cursor: pointer;
}

footer { padding: 30px; text-align: center; background: #000; margin-top: 50px; }


.table-container {
    overflow-x: auto;
    margin: 30px auto;
    width: 90%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse; 
    background-color: #181818; 
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.comparison-table th, 
.comparison-table td {
    padding: 15px 25px; 
    text-align: left;
    border-bottom: 1px solid #333; 
}

.comparison-table th {
    background-color: #000;
    color: #ff4d8d; 
    font-weight: bold;
    text-transform: uppercase;
}

.comparison-table tr:last-child td {
    border-bottom: none; 
}

.comparison-table tbody tr:hover {
    background-color: #222; 
}