@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');


:root {
    --primary-color: #EF236C;
    --primary-hover: #D6155D;
    --primary-active: #B0114C;
    --primary-light: #FEE9F0;
    --primary-border: #F9B6CE;
    --primary-rgb: 239, 35, 108;
    --primary-a10: rgba(239, 35, 108, 0.1);
    --primary-a20: rgba(239, 35, 108, 0.2);
    --primary-a50: rgba(239, 35, 108, 0.5);
    --primary-a80: rgba(239, 35, 108, 0.8);

    --secondary-color: #131349;
    --dark: #212121;
    --light: #ffffff;
    --bg-color: #ffffff;
    --border-color: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --line-height: 1.6;
    --container-width: 1200px;
    --spacing: 1rem;

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-3xl: 48px;
    --radius-full: 9999px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    background: url("../img/background-kQGx76o.jpg") no-repeat left top fixed;
    background-size: 200% auto;
    font-family: var(--font-body);
    line-height: var(--line-height);
    color: var(--dark);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing);
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

main {
    flex: 1;
}


/** HERO ***********************************************************************/
header {
    padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    color: var(--light);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.74);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 11;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-top-actions {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-login {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 12px;
    line-height: 30px;
    border-radius: var(--radius-3xl);
}

.hero-login:hover {
    color: var(--primary-color);
    background-color: var(--primary-a20);
}

.hero-logo {
    background: url("../img/enjoyvent-lw-Fzk-S-u.svg") no-repeat center center;
    background-size: 100% auto;
    width: 200px;
    height: 60px;
    margin-bottom: 10px;
}

@media (min-width: 769px) {
    .hero-logo {
        width: 300px;
        height: 90px;
    }
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-white);
    margin-bottom: 10px;
    text-shadow: 0 30px 40px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    display: block;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 800;
    margin-top: 10px;
}

.hero-headline-carousel {
    position: relative;
    width: 100%;
}

.hero-headline-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-headline-item.active {
    position: relative;
    opacity: 1;
}

.hero-input {
    width: 100%;
    max-width: 550px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-input:hover,
.hero-input:focus-within {
    border: 1px solid var(--primary-border);
    box-shadow: 0 4px 20px var(--primary-a20);
}

.hero-country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 8px 8px 16px;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    margin-right: 4px;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

.hero-country-btn img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
}

.hero-country-btn .country-chevron {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
}

.hero-country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    width: 280px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.hero-country-dropdown .country-search-input {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.hero-country-dropdown .country-list {
    max-height: 220px;
    overflow-y: auto;
}

.hero-country-dropdown:has(.country-list:empty) .country-search-input {
    border-bottom: none;
    border-radius: var(--radius-lg);
}

.hero-country-dropdown.open {
    display: block;
}

.hero-country-dropdown .country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.hero-country-dropdown .country-option:hover {
    background: var(--primary-light);
}

.hero-country-dropdown .country-list .country-option:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-country-dropdown .country-option img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-country-dropdown .country-option .country-prefix {
    color: rgba(0, 0, 0, 0.5);
    margin-left: auto;
}

.hero-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 16px;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: inherit;
    min-width: 0;
}

.hero-input input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.hero-input-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    outline: none;
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.hero-input-button:hover {
    box-shadow: 0 5px 10px -2px var(--primary-color);
}

.hero-description {
    font-size: 0.95rem;
    max-width: 550px;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.hero-info {
    font-size: 0.95rem;
    max-width: 550px;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.hero-info strong {
    color: white;
    font-weight: 700;
}

/* --- RESPONSIVE (MOBİL) AYARLAR --- */
@media (max-width: 768px) {
    .invite-message-text {
        font-size: 13px !important;
    }

    .footer-link {
        text-align: left;
        padding: 10px 0;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 60px 20px 40px;
    }

    .hero-content {
        gap: 14px;
    }

    .hero-logo {
        margin-bottom: 6px;
    }

    .hero-top-actions {
        top: 20px;
        right: 20px;
        gap: 8px;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 0;
    }

    .hero h1 span {
        font-size: 20px;
        min-height: 2lh;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-input {
        flex-direction: column;
        border-radius: var(--radius-xl);
        padding: 10px;
        gap: 8px;
        background: #fff;
    }

    .hero-input .hero-phone-row {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .hero-country-btn {
        padding: 8px 8px 8px 4px;
        font-size: 14px;
        border-right: 1px solid rgba(0, 0, 0, 0.15);
        margin-right: 4px;
    }

    .hero-input input {
        padding: 10px 12px;
        font-size: 1rem;
        width: 100%;
    }

    .hero-input-button {
        width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
        border-radius: var(--radius-full);
    }

    .hero-info {
        font-size: 0.85rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .hero h1 span {
        min-height: 3lh;
    }
}


/** HEADER NAV ***********************************************************************/
.site-header {
    width: 100%;
}

.header-content {
    max-width: var(--container-width);
    height: var(--header-height);
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-content--centered {
    justify-content: center;
}

.header-logo {
    display: block;
    width: 150px;
    height: 40px;
    background-image: url("../img/enjoyvent-ld-_iDPKq4.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.header-nav {
    display: flex;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    padding: 6px 18px;
    border-radius: var(--radius-full);
}

.nav-link.active {
    color: var(--primary-color);
    background-color: var(--primary-a10);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.score-badge {
    gap: 8px;
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--light);
    padding: 0 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    height: 36px;
    position: relative;
    box-shadow: 0 5px 10px rgba(21, 20, 72, 0.15);
}

.score-icon {
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("../img/enjoyscore-dLrQCrQ.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 900px) {
    .header-content {
        margin-top: 0;
        padding: 12px 12px;
    }

    .header-actions {
        gap: 10px;
    }

    .user-menu {
        margin-right: 6px;
    }

    .header-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        flex-direction: column;
        background: var(--bg-color);
        border-right: 1px solid #eee;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        padding: 0;
        gap: 0;
        z-index: 1101;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
    }

    .header-nav.open {
        transform: translateX(0);
    }

    .header-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
    }

    .header-nav-title {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--secondary-color);
    }

    .header-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 0;
        background: transparent;
        color: var(--secondary-color);
        cursor: pointer;
        font-size: 18px;
        border-radius: var(--radius-full);
        transition: background-color 0.15s, color 0.15s;
    }

    .header-nav-close:hover {
        background-color: rgba(0, 0, 0, 0.04);
        color: var(--primary-color);
    }

    .header-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1100;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .header-nav-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-drawer-open {
        overflow: hidden;
    }

    .nav-link {
        padding: 14px 20px;
        text-align: left;
        font-size: 15px;
        font-weight: 600;
        width: 100%;
        border-radius: 0;
        color: var(--secondary-color);
    }

    .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.04);
        color: var(--secondary-color);
    }

    .nav-link.active {
        background-color: var(--primary-a10);
        color: var(--primary-color);
    }

    .header-logo {
        width: 120px;
    }
}


/** WHY ENJOYVENT *************************************************************/
.why-section {
    max-width: var(--container-width);
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

.why-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.why-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    border-color: var(--primary-color);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: var(--primary-color);
}

.why-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-card {
        padding: 20px 14px;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


/** FAQ ***********************************************************************/
.faq-section {
    max-width: var(--container-width);
    margin: 30px auto;
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
}

.grid-container {
    width: 700px;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
    display: grid;
    gap: 16px;
    align-items: start;
    position: relative;
}

.faqCard {
    background-color: white;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.faqCard:hover {
    border-color: var(--primary-color);
}

.faqCard h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    padding: 6px 28px 6px 6px;
    position: relative;
}

.faqCard p {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--dark);
    line-height: 1.2;
    padding: 0 6px;
}


.faqCard h3::after {
    content: "";
    background: url("../img/icon-form-down-JehOAhg.svg") no-repeat right center;
    background-size: 24px auto;
    font-weight: 900;
    font-size: 14px;
    color: #999;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faqCard.active h3::after {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faqCard.active h3 {

    color: var(--primary-color);
}

.faqCard {
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
    transition: background-color 0.3s ease;
    overflow: hidden;
}


.faqCard p {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, margin-top 0.4s ease-out;
    color: #555;
    line-height: 1.6;
}

.faqCard.active {
    background-color: #f9f9f9;
}

.faqCard.active p {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}


.show-on-mobile {
    display: block;
}

.hide-on-mobile {
    display: none;
}

@media (min-width: 768px) {

    :root {
        --spacing: 1.5rem;
    }

    .container {
        max-width: 720px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing);
    }

    .show-on-mobile {
        display: none;
    }

    .hide-on-mobile {
        display: block;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing);
    }

    html {
        font-size: 110%;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1200px;
    }
}


/* Main Content */
.main-content {
    text-align: center;
    padding: 50px 0;
    width: var(--container-width);
    margin: 0 auto;
}


/** WELCOME PAGE ***********************************************************************/


.profile-image {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
    overflow: hidden;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: zoomIn 0.6s ease-out 0.2s backwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.welcome-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.welcome-subtitle {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 80px;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.welcome-subtitle p {
    margin: 0 0 16px;
}

.welcome-subtitle p:last-child {
    margin-bottom: 0;
}

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

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cards-container--centered {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cards-container--centered .card {
    width: 340px;
    flex: 0 0 340px;
}

.card {
    background: var(--bg-color);
    border-radius: 24px;
    padding: 24px 24px 80px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.card:nth-child(1) {
    animation-delay: 0.8s;
}

.card:nth-child(2) {
    animation-delay: 1s;
}

.card:nth-child(3) {
    animation-delay: 1.2s;
}

.card--profile {
    background: var(--secondary-color);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card--profile .card-badge {
    background-color: var(--primary-a20);
    border: 1px solid var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color) url("../img/enjoyscore-dLrQCrQ.svg") no-repeat right 14px center;
    background-size: 20px auto;
    color: white;
    padding: 0 48px 0 16px;
    line-height: 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: rotate(-10deg) scale(1.1);
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.card--profile .card-title {
    color: white;
}

.card-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 32px;
}

.card--profile .card-description {
    color: rgba(255, 255, 255, 0.8);
}

.card-description + .card-advantage {
    margin-top: -20px;
}

.card-advantage {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 32px;
    font-style: italic;
}

.card--profile .card-advantage {
    color: rgba(255, 255, 255, 0.6);
}

.card-button {
    width: 90%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 27, 126, 0.3);
    position: absolute;
    bottom: 20px;
    left: 5%;
}

.card-button:hover {
    background: #E0156C;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 27, 126, 0.4);
}

.card-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .cards-container--centered .card {
        width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {


    .main-content {
        padding: 40px 20px;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .cards-container {
    }

    .card {
    }
}


/** PROFILE PAGE ***********************************************************************/


.mc-profile {
    max-width: 800px;
}

.profile-header {
    text-align: center;
    margin-bottom: 10px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
}

.profile-image-delete {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.profile-image-wrapper:hover .profile-image-delete {
    opacity: 1;
    visibility: visible;
}

.profile-image-delete:hover {
    background: rgba(220, 38, 38, 0.7);
}

@media (hover: none) {
    .profile-image-delete {
        opacity: 1;
        visibility: visible;
    }
}

.photo-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(30, 21, 72, 0.3);
}

.photo-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 21, 72, 0.4);
}

/* Form Section */
.form-section {
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-field {
    background: white;
    border: 1px solid var(--primary-a20);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-field:hover {
    border: 1px solid var(--primary-a50);
    box-shadow: 0 4px 12px rgba(255, 27, 126, 0.1);
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.field-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.field-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.field-label {
    font-size: 15px;
    font-weight: 500;
}

.field-value {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.field-action {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--primary-color);
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.field-input::placeholder {
    color: #9f9f9f;
    font-weight: 400;
}

.field-input:focus {
    color: var(--primary-color);
}

.field-select {
    cursor: pointer;
    appearance: none;
    background-image: url("../img/icon-form-down-JehOAhg.svg");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 32px;
}

.field-select option {
    color: var(--dark);
    background: white;
    padding: 12px;
}

.field-select:invalid,
.field-select option[value=""] {
    color: var(--dark);
}

.field-select:valid {
    color: var(--dark);
}

.field-date {
    cursor: pointer;
    color-scheme: light;
}

.field-date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(36%) sepia(89%) saturate(7467%) hue-rotate(325deg) brightness(100%) contrast(103%);
}

/* Birthday compound field — three transparent selects that sit
   inside the shared .form-field shell, so the day/month/year picker
   reads as a single themed input rather than three separate boxes. */
.field-birthday {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-birthday select {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    appearance: none;
    font-size: 15px;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    padding: 0 16px 0 0;
    background-image: url("../img/icon-form-down-JehOAhg.svg");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 10px;
}

.field-birthday select:invalid,
.field-birthday select option[value=""] {
    color: #9f9f9f;
    font-weight: 400;
}

.field-birthday select option {
    color: var(--dark);
    background: white;
}

.form-field:has(.field-input:focus) {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 27, 126, 0.15);
}

.form-field {
    position: relative;
}

.field-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--secondary-color);
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    padding: 12px 16px;
    border-radius: 12px;
    white-space: normal;
    width: max-content;
    max-width: 320px;
    text-align: left;
    font-weight: 400;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(19, 19, 73, 0.25);
}

.field-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--secondary-color);
}

.form-field.tooltip-visible .field-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .field-tooltip {
        max-width: 260px;
        font-size: 12px;
        padding: 10px 14px;
    }
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.form-field:hover .dropdown-icon {
    transform: translateY(2px);
}

/* Categories Section */
.categories-section {
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out 0.7s backwards;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-pill {
    background: var(--bg-color);
    border: 2px solid var(--primary-a10);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category-pill:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-pill.active {
    background: var(--primary-a10);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Availability Icons */
.field-availability-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.field-availability-icon.available {
    color: #22c55e;
    opacity: 1;
}

.field-availability-icon.unavailable {
    color: #ef4444;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {

    .grid-container {
        width: 100%;
        padding: 0 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .category-pills {
        gap: 8px;
    }

    .category-pill {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/** FRIENDS PAGE ***********************************************************************/


/* Invite Card */
.invite-card {
    max-width: 700px;
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    margin: 0 auto 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.invite-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.invite-description {
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.2;
    padding: 0 24px;
}

.invite-message-box {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 24px 48px 24px 24px;
    margin-bottom: 24px;
    text-align: left;
    position: relative;
}

.invite-message-text {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

.invite-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 3px auto;
}

.invite-link:hover {
    text-decoration: underline;
}

.collapse-button {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.collapse-button:hover {
    background: #E0156C;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-button.copy,
.share-button.message {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
}

.share-button.whatsapp {
    flex: 1 1 100%;
    justify-content: center;
}

.share-button {
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: white;
}

.share-button:hover {
    transform: translateY(-2px);
}

.share-button.copy {
    background: var(--secondary-color);
}

.share-button.copy:hover {
    background: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(30, 21, 72, 0.3);
}

.share-button.message {
    background: var(--primary-color);
}

.share-button.message:hover {
    background: #E0156C;
    box-shadow: 0 6px 20px rgba(255, 27, 126, 0.3);
}

.share-button.whatsapp {
    background: #24cb61;
}

.share-button.whatsapp:hover {
    background: #1EB454;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Friends Section */
.friends-section {
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
    width: var(--container-width);
}

.section-header {
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--dark);
    text-align: left;
}

.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 3fr));
    gap: 18px;
}


.friend-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.friend-card:nth-child(1) {
    animation-delay: 0.6s;
}

.friend-card:nth-child(2) {
    animation-delay: 0.65s;
}

.friend-card:nth-child(3) {
    animation-delay: 0.7s;
}

.friend-card:nth-child(4) {
    animation-delay: 0.75s;
}

.friend-card:nth-child(5) {
    animation-delay: 0.8s;
}

.friend-card:nth-child(6) {
    animation-delay: 0.85s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.friend-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 27, 126, 0.1);
}

.friend-card.pending {
    border-color: var(--primary-color);
    background: #FFF5F9;
}

.friend-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #E0E0E0;
    flex-shrink: 0;
}

.friend-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.friend-info {
    flex: 1;
}

.friend-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.friend-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.friend-button {
    border: none;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.friend-button.accept {
    background: var(--primary-color);
    color: white;
}

.friend-button.accept:hover {
    background: #E0156C;
}

.friend-button.reject {
    background: var(--primary-a10);
    color: var(--primary-color);
}

.friend-button.reject:hover {
    background: var(--primary-a20);
}

.friend-button.remove {
    background: transparent;
    color: transparent;
}

.friend-card:hover .friend-button.remove {
    background: var(--primary-a10);
    color: var(--primary-color);
}

/* Message Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUpModal 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: normal;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
}

.modal-close {
    background: url("../img/icon-share-modal-x--DCJdTl.svg") no-repeat center center var(--secondary-color);
    background-size: 20px auto;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
}

.message-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message-option {
    background: #F8F8F8;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: calc(100% - 6px);
}

.message-option:hover {
    border-color: var(--primary-color);
    background: #FFF5F9;
}

.message-option.selected {
    border-color: var(--primary-color);
    background: #FFF5F9;
}

.message-option.selected::after {
    content: "";
    background: url("../img/icon-share-modal-tick-kxdfHaw.svg") no-repeat center center var(--primary-color);
    background-size: 20px auto;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.message-option-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.6;
    padding-right: 40px;
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.modal-button {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button.primary {
    background: var(--primary-color);
    color: white;
}

.modal-button.primary:hover {
    background: #E0156C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 27, 126, 0.3);
}

.modal-button.secondary {
    background: #F8F8F8;
    color: var(--dark);
}

.modal-button.secondary:hover {
    background: #E8E8E8;
}

/* Responsive */
@media (max-width: 768px) {

    .friend-card .friend-button.remove {
        background: var(--primary-a10);
        color: var(--primary-color);
    }

    .friends-section {
        width: 100%;
    }

    .invite-card {
        padding: 32px 24px;
    }

    .invite-title {
        font-size: 24px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }

    .friends-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 20px;
    }

    .collapse-button {
        top: 6px;
        right: 6px;
    }

    .invite-message-box {
        padding: 18px 40px 18px 18px;
    }

    .modal {
        padding: 24px;
        width: 95%;
    }

    .modal-title {
        font-size: 20px;
    }

    .message-option {
        padding: 16px;
    }

    .message-option-text {
        font-size: 14px;
    }

    .modal-actions {
        flex-direction: column;
    }
}


/** ARTIST PAGE ***********************************************************************/

/* Spotify Button in Header Area */
.spotify-header-button {
    position: absolute;
    top: 100px;
    right: 60px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out 0.3s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.spotify-header-button:hover {
    transform: translateX(-4px);
}

.spotify-icon {
    width: 20px;
    height: 20px;
}

/* Spotify Connect Card */
.spotify-connect-card {
    width: 700px;
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    margin: 0 auto 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.8s ease-out 0.2s backwards;
    position: relative;
}

.spotify-connect-card2 {
    width: 700px;
    border-radius: 24px;
    padding: 0;
    text-align: center;
    margin: 0 auto 40px;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-avatar-small {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar-small svg {
    width: 24px;
    height: 24px;
    fill: #999;
}

.spotify-connect-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.spotify-connect-description {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.spotify-connect-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 27, 126, 0.3);
}

.spotify-connect-button:hover:not(:disabled) {
    background: #E0156C;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 27, 126, 0.4);
}

.spotify-connect-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.spotify-btn-wrapper {
    position: relative;
    display: inline-block;
}

.spotify-btn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(255, 27, 126, 0.3);
}

/* Artists Section */
.artists-section {
    width: var(--container-width);
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out 0.5s backwards;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 24px;
}

.artist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.6s ease-out backwards;
}

.artist-item:nth-child(1) {
    animation-delay: 0.6s;
}

.artist-item:nth-child(2) {
    animation-delay: 0.65s;
}

.artist-item:nth-child(3) {
    animation-delay: 0.7s;
}

.artist-item:nth-child(4) {
    animation-delay: 0.75s;
}

.artist-item:nth-child(5) {
    animation-delay: 0.8s;
}

.artist-item:nth-child(6) {
    animation-delay: 0.85s;
}

.artist-item:nth-child(7) {
    animation-delay: 0.9s;
}

.artist-item:nth-child(8) {
    animation-delay: 0.95s;
}

.artist-item:nth-child(9) {
    animation-delay: 1s;
}

.artist-item:nth-child(10) {
    animation-delay: 1.05s;
}

.artist-item:nth-child(11) {
    animation-delay: 1.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 6px;
    overflow: hidden;
    background: #E0E0E0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

.artist-action {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-action:hover {
    padding: 6px 24px;
}

.artist-action.added {
    background: var(--primary-a10);
    color: var(--primary-color);
}

/* Featured Artists Section */
.featured-section {
    animation: fadeIn 0.8s ease-out 0.8s backwards;
}

.featured-section .section-title {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 16px 24px;
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .score-badge {
        order: 1;
    }

    .spotify-header-button {
        position: static;
        margin: 20px auto;
    }

    .main-content {
        padding: 20px 20px;
        width: 100%;
    }

    .spotify-connect-card,
    .spotify-connect-card2 {
        padding: 32px 24px;
        width: 100%;
    }

    .artists-section {
        width: 100%;
    }

    .user-avatar-small {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .spotify-connect-title {
        font-size: 24px;
    }

    .spotify-connect-description {
        font-size: 14px;
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 40px 10px;
    }

    .artist-avatar {
        width: 70px;
        height: 70px;
    }

    .section-title {
        font-size: 20px;
    }

    body {
        padding-bottom: 100px;
    }
}

/* Minimal Footer CSS */
.site-footer {
    width: 100%;
    padding: 2rem 0; /* Üstten ve alttan boşluk */
    margin-top: 4rem; /* İçerikle footer arasına mesafe */
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Çok hafif bir çizgi */
}

.footer-content {
    max-width: 1200px; /* İçerik genişliği */
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Yazıyı sola, linkleri sağa atar */
    align-items: normal;
    padding: 0 20px;
    flex-wrap: wrap; /* Mobilde alt alta geçmesini sağlar */
    gap: 15px;
}

.footer-copyright {
    color: #9ca3af; /* Gri tonu */
    font-size: 13px;
    font-weight: 500;
}

.footerlinkcontent {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    text-decoration: none;
    color: #6b7280; /* Koyu gri */
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #f43f5e; /* Sayfadaki pembe buton rengi */
}

.separator {
    color: #e5e7eb;
    font-size: 0.8rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footerlinkcontent {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}


:root {
    --notification-bg: #F5F3F8;
    --notification-white: #FFFFFF;
    --notification-text: #1A1A1A;
    --notification-gray: #666666;
    --notification-border: #E8E8E8;
    --notification-green: #25D366;
}


/* Top Navigation Bar */
.notification-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: var(--notification-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: notificationSlideDown 0.6s ease-out;
}

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

.notification-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.notification-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.notification-topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-points-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
}

.notification-points-star {
    color: var(--primary-color);
    font-size: 18px;
}

/* Main Container */
.notification-wrapper {
    width: 700px;
    margin: 0 auto;
    padding: 40px 0 20px;
}

.notification-intro {
    text-align: center;
    margin-bottom: 32px;
    animation: notificationFadeIn 0.8s ease-out 0.2s backwards;
}

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

.notification-intro-emoji {
    font-size: 48px;
    margin-bottom: 16px;
}

.notification-intro-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.notification-intro-text {
    font-size: 16px;
    color: var(--notification-gray);
    line-height: 1.6;
}

.notification-whatsapp-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F8ED;
    color: var(--notification-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
}

/* Settings Category Box */
.notification-category {
    background: var(--notification-white);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    animation: notificationSlideUp 0.6s ease-out backwards;
}

.notification-category:nth-child(2) {
    animation-delay: 0.3s;
}

.notification-category:nth-child(3) {
    animation-delay: 0.4s;
}

.notification-category:nth-child(4) {
    animation-delay: 0.5s;
}

.notification-category:nth-child(5) {
    animation-delay: 0.6s;
}

.notification-category:nth-child(6) {
    animation-delay: 0.7s;
}

.notification-category:nth-child(7) {
    animation-delay: 0.8s;
}

@keyframes notificationSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-category-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.notification-category-number {
    font-size: 28px;
}

.notification-category-name {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: var(--primary-color);
    /* Inter's "fi" ligature at weight 800 collapses the i's dot into the f hook;
       disable common ligatures so "Profile" reads correctly. */
    font-variant-ligatures: no-common-ligatures;
}

/* Individual Setting Row */
.notification-preference {
    padding: 18px 0;
    border-bottom: 1px solid #F5F5F5;
}

.notification-preference:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-preference-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.notification-preference-description {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    flex: 1;
}

.notification-preference-input {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* Binary Toggle */
.notification-binary-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: #E0E0E0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-binary-switch.enabled {
    background: var(--primary-color);
}

.notification-binary-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notification-binary-switch.enabled::after {
    left: 27px;
}

/* Dropdown Selector */
.notification-picker-wrapper {
    position: relative;
}

.notification-picker-trigger {
    background: #F8F8F8;
    border: 1px solid var(--notification-border);
    padding: 8px 36px 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notification-picker-trigger:hover {
    border-color: var(--primary-color);
    background: #FFF5F9;
}

.notification-picker-trigger.selected {
}

.notification-picker-arrow {
    background: url("../img/icon-form-down-JehOAhg.svg") no-repeat right center;
    position: absolute;
    right: 12px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
    font-size: 12px;
}

/* Options List */
.notification-options-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 100;
    animation: notificationDropSlide 0.3s ease-out;
}

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

.notification-options-list.visible {
    display: block;
}

.notification-option-item {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.notification-option-item:first-child {
    border-radius: 12px 12px 0 0;
}

.notification-option-item:last-child {
    border-radius: 0 0 12px 12px;
}

.notification-option-item:hover {
    background: #FFF5F9;
    color: var(--primary-color);
}

.notification-option-item.chosen {
    background: #FFF5F9;
    color: var(--primary-color);
    font-weight: 600;
}

/* Bottom Action Bar */
.notification-actions-bar {
    position: sticky;
    bottom: 0;
    padding: 12px 0;
    text-align: center;
}

.notification-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 44px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 27, 126, 0.3);
    font-family: 'Inter', sans-serif;
}

.notification-submit-btn:hover {
    background: #E0156C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 27, 126, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-topbar {
        padding: 16px 24px;
    }


    .notification-wrapper {
        padding: 24px 16px 100px;
        width: 100%;
    }

    .notification-actions-bar {
        bottom: 70px;
        padding: 12px 20px;
    }

    .notification-intro-heading {
        font-size: 28px;
    }

    .notification-category {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .notification-category-name {
        font-size: 18px;
    }

    .notification-preference-layout {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .notification-preference-description {
        flex: 1;
        min-width: 0;
        line-height: 1.3;
    }

    .notification-preference-input {
        width: auto;
        flex-shrink: 0;
        justify-content: flex-end;
    }


    .notification-picker-trigger {
        padding: 8px 44px 8px 12px;
        font-size: 13px;
    }

    .notification-submit-btn {
        width: 100%;
        padding: 16px 32px;
    }


}


/* 1. Varsayılan Durum (KAPALI) */
.modal-overlay {
    display: none;
}

/* 2. Açık Durum (JavaScript ile 'active' class'ı eklendiğinde) */
.modal-overlay.active {
    display: flex; /* Flex, modalı ekranın ortasında tutar */
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #131349d6;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal */
.modal {
    background: #E8E8E8;
    border-radius: 32px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp5 0.4s ease-out;
}

@keyframes slideUp5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alert Modal */
#alertModal {
    z-index: 1100;
}

.alert-modal {
    max-width: 400px;
    padding: 32px;
}

.alert-modal-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.alert-modal-icon {
    flex-shrink: 0;
}

.alert-modal-message {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    white-space: pre-line;
    padding-top: 2px;
}

.alert-modal .modal-actions {
    justify-content: flex-end;
}

.alert-type-success .modal-button.primary {
    background: #10b981;
}

.alert-type-success .modal-button.primary:hover {
    background: #059669;
}

.alert-type-error .modal-button.primary {
    background: #ef4444;
}

.alert-type-error .modal-button.primary:hover {
    background: #dc2626;
}

.alert-type-warning .modal-button.primary {
    background: #f59e0b;
}

.alert-type-warning .modal-button.primary:hover {
    background: #d97706;
}

.alert-type-info .modal-button.primary {
    background: #3b82f6;
}

.alert-type-info .modal-button.primary:hover {
    background: #2563eb;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 21, 72, 0.3);
}

.close-button:hover {
    background: #2A2050;
    transform: scale(1.1);
}

/* Modal Phone Input with Country Code */
.modal-phone-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    background: white;
    border: 1px solid #D0D0D0;
    border-radius: 16px;
    overflow: hidden;
}

.modal-country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 10px 14px 16px;
    cursor: pointer;
    border-right: 1px solid #D0D0D0;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

.modal-country-btn img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
}

.modal-country-btn .country-chevron {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.4);
}

.modal-country-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.modal-country-dropdown .country-search-input {
    width: 100%;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.modal-country-dropdown .country-list {
    max-height: 200px;
    overflow-y: auto;
}

.modal-country-dropdown:has(.country-list:empty) .country-search-input {
    border-bottom: none;
    border-radius: var(--radius-lg);
}

.modal-country-dropdown.open {
    display: block;
}

.modal-country-dropdown .country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.modal-country-dropdown .country-option:hover {
    background: var(--primary-light);
}

.modal-country-dropdown .country-list .country-option:last-child {
    border-radius: 0 0 12px 12px;
}

.modal-country-dropdown .country-option img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.modal-country-dropdown .country-option .country-prefix {
    color: rgba(0, 0, 0, 0.5);
    margin-left: auto;
}

.modal-phone-row input[type="tel"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    min-width: 0;
}

.modal-phone-row input[type="tel"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

/* Modal Content */
.modal-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 16px;
}

.modal-description {
    font-size: 15px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.4;
}

.phone-number {
    color: var(--primary-color);
    font-weight: 600;
}

.resend-code {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 32px;
}

.resend-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-link.disabled {
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.resend-link:hover {
    text-decoration: underline;
}

/* OTP Input */
.otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.otp-input {
    width: 64px;
    height: 64px;
    border: 1px solid #D0D0D0;
    border-radius: 16px;
    background: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.otp-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(255, 27, 126, 0.2);
}

.otp-input.filled {
    border-color: var(--primary-color);
    background: #FFF5F9;
}

/* Checkboxes */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-wrapper {
    position: relative;
    flex-shrink: 0;
}

.checkbox-input {
    width: 24px;
    height: 24px;
    border: 1px solid #D0D0D0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-input:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-input:checked::after {
    content: "";
    background: url("../img/icon-share-modal-tick-kxdfHaw.svg") no-repeat center center;
    background-size: 24px auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    width: 24px;
    height: 24px;
}

.checkbox-label {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.1;
    cursor: pointer;
    user-select: none;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 18px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 27, 126, 0.35);
}

.submit-button:hover {
    background: #E0156C;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 27, 126, 0.45);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    background: #CCC;
    cursor: not-allowed;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 40px 28px;
        border-radius: 24px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-description {
        font-size: 14px;
    }

    .otp-input {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .otp-container {
        gap: 8px;
    }

    .submit-button {
        padding: 16px 20px;
        font-size: 15px;
    }

    .close-button {
        width: 36px;
        height: 36px;
        top: 20px;
        right: 20px;
    }
}


/* ========== RESET / BASE ========== */
.pp-container {
    margin: 0 auto;
    padding: 40px 20px;
    font-family: var(--font-body);
    color: #1f2937;
    line-height: 1.4;
    animation: notificationSlideUp 0.6s ease-out backwards;
}

.pp-container * {
    box-sizing: border-box;
}

/* ========== TITLES ========== */
.pp-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.pp-heading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111827;
}

/* ========== TEXT ========== */
.pp-text {
    font-size: 15px;
    margin-bottom: 14px;
    color: #374151;
}

/* ========== LINKS ========== */
.pp-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.pp-link:hover {
    text-decoration: underline;
}

/* ========== LISTS ========== */
.pp-list {
    margin: 12px 0 20px 0;
    padding-left: 20px;
}

.pp-list-item {
    font-size: 15px;
    margin-bottom: 8px;
    color: #374151;
}

/* ========== SECTION SPACING ========== */
.pp-heading + .pp-text,
.pp-heading + .pp-list {
    margin-top: 8px;
}

/* Element-level selectors for shared legal partials (bare h2/p/ul/li/a) */
.pp-container h2 { font-size: 22px; font-weight: 600; margin-top: 40px; margin-bottom: 16px; color: #111827; }
.pp-container p { font-size: 15px; margin-bottom: 14px; color: #374151; }
.pp-container a { color: #2563eb; text-decoration: none; font-weight: 500; }
.pp-container a:hover { text-decoration: underline; }
.pp-container ul { margin: 12px 0 20px 0; padding-left: 20px; }
.pp-container ul li { font-size: 15px; margin-bottom: 8px; color: #374151; }
.pp-container strong { color: #111827; }
.pp-container h2 + p,
.pp-container h2 + ul { margin-top: 8px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .pp-container {
        padding: 24px 16px;
    }

    .pp-title,
    .pp-heading {
        font-size: 26px;
    }

    .pp-heading,
    .pp-container h2 {
        font-size: 20px;
    }

    .pp-text,
    .pp-list-item,
    .pp-container p,
    .pp-container ul li {
        font-size: 14px;
    }
}


.topmes {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    z-index: 1000;
    animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
    to {
        transform: translateX(-50%) translateY(0);
    }
}

.topmes.hide {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateX(-50%) translateY(-150px);
        opacity: 0;
    }
}

.topmes-card {
    background-color: var(--bg-color);
    padding: 8px 16px 8px 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    border-radius: 40px;
}

.topmes-close {
    background: url("../img/icon-close-yTzOYZr.svg") var(--bg-color) center center;
    position: absolute;
    top: 16px;
    right: -44px;
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 20px;
}

.topmes-close:hover {
}

.topmes-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.topmes-text {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #1a1a1a;
    flex: 1;
}

.topmes-text span {
    font-weight: 700;
}

.topmes-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.topmes-btn {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.topmes-btn-accept {
    background: var(--primary-color);
    color: white;
}

.topmes-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 27, 141, 0.3);
}

.topmes-btn-delete {
    background-color: var(--primary-a10);
    color: var(--primary-color);
}

.topmes-btn-delete:hover {
    background-color: var(--primary-color);
    color: var(--light);
}

@media (max-width: 480px) {
    .topmes-card {
        padding: 16px 20px;
        border-radius: 40px;
        min-width: auto;
        width: calc(100vw - 70px);
        flex-wrap: wrap;
    }

    .topmes-close {
        top: 12px;
        right: 12px;
    }

    .topmes-avatar {
        width: 48px;
        height: 48px;
    }

    .topmes-text {
        font-size: 16px;
    }

    .topmes-actions {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }

    .topmes-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 14px;
    }
}

.enjoyscorepopover {
    background-color: #BDEAB0;
    border-radius: 16px;
    padding: 6px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    position: absolute;
    top: 50px;
    right: 40px;
    transform: translateY(100px);
    animation: slideDown2 0.5s ease-out forwards;
    z-index: 1000;
    color: #1A460D;
    font-size: 14px;
    font-weight: 600;
}

@keyframes slideDown2 {
    to {
        transform: translateY(0);
    }
}

.enjoyscorepopover.hide {
    animation: popoverFadeOut 0.5s ease-in forwards;
}

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

.enjoyscorepopover::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #BDEAB0;
    border-radius: 2px;
}


/* Toast Container - Top Center */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Dynamic Island Toast */
.toast {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: #1a1a1a;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    max-width: 90vw;
    animation: expandIsland 0.4s cubic-bezier(0.32, 0.72, 0, 1) forwards;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.toast.removing {
    animation: shrinkIsland 0.4s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

@keyframes expandIsland {
    0% {
        transform: scale(0.3) translateY(-20px);
        opacity: 0;
        border-radius: 50px;
    }
    50% {
        transform: scale(1.05) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        border-radius: 50px;
    }
}

@keyframes shrinkIsland {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.3) translateY(-20px);
        opacity: 0;
    }
}

.toast-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: white;
    white-space: nowrap;
}

.toast-message {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
}

/* Toast Type Colors - Accent glow */
.toast.success {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d4d3a 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.toast.error {
    background: linear-gradient(135deg, #1a1a1a 0%, #4d0d0d 100%);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
}

.toast.warning {
    background: linear-gradient(135deg, #1a1a1a 0%, #4d3d0d 100%);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.toast.info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d2a4d 100%);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

/* Pulse effect for icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.toast-icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Bottom glow line */
.toast::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: currentColor;
    opacity: 0.5;
    border-radius: 2px;
}

.toast.success::after {
    background: #10b981;
}

.toast.error::after {
    background: #ef4444;
}

.toast.warning::after {
    background: #f59e0b;
}

.toast.info::after {
    background: #3b82f6;
}

@media (max-width: 480px) {
    .toast {
        min-width: 280px;
        padding: 14px 20px;
    }

    .toast-message {
        max-width: 180px;
    }
}

/** LANGUAGE SWITCHER ****************************************************************/
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-full);
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.15s, border-color 0.15s;
}

.lang-switcher-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.lang-switcher-chevron {
    font-size: 0.7rem;
    transition: transform 0.15s;
}

.lang-switcher.open .lang-switcher-chevron {
    transform: rotate(180deg);
}

.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 6px;
    display: none;
    z-index: 100;
}

.lang-switcher.open .lang-switcher-menu {
    display: block;
}

.lang-switcher-option {
    display: block;
    padding: 8px 12px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.1s;
}

.lang-switcher-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
}

.lang-switcher-option.active {
    background-color: var(--primary-a10);
    color: var(--primary-color);
}

/* Variant for the prelaunch shared header (light background) */
.site-header .lang-switcher-btn {
    border-color: var(--border-color);
    color: var(--secondary-color);
}

.site-header .lang-switcher-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: var(--secondary-color);
}

/** HEADER HAMBURGER + USER MENU *****************************************************/
.header-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0;
    font-size: 20px;
    transition: background-color 0.15s, color 0.15s;
}

.header-hamburger:hover {
    background-color: rgba(0, 0, 0, 0.04);
    color: var(--primary-color);
}

@media (min-width: 901px) {
    .header-nav-top,
    .header-nav-backdrop {
        display: none;
    }
}

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

.user-avatar-button {
    border: 1px solid var(--border-color);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 6px;
    display: none;
    z-index: 100;
}

.user-menu.open .user-menu-dropdown {
    display: block;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.1s;
}

.user-menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.user-menu-item i {
    width: 18px;
    text-align: center;
    color: var(--text-muted, #666);
}

.user-menu-item:hover i {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .header-hamburger {
        display: flex;
    }

    .lang-switcher-label,
    .site-header .lang-switcher-chevron {
        display: none;
    }

    .site-header .lang-switcher-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        gap: 0;
        justify-content: center;
    }
}

/* AJAX-paginated block container */
.pl-block {
    transition: opacity 0.15s ease;
}

.pl-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.pl-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 9999px;
    background: var(--light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.pl-pagination-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.pl-pagination-link.is-current {
    background: var(--primary-color);
    color: #fff;
    cursor: default;
}

.pl-pagination-link.is-disabled {
    opacity: 0.4;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--dark);
}

.pl-pagination-ellipsis {
    padding: 0 4px;
    color: var(--dark);
    opacity: 0.5;
}

/* Score history page */
.pl-score-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 32px;
}

.pl-score-stat {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pl-score-stat--total {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-color: transparent;
}

.pl-score-stat--total .pl-score-stat-label,
.pl-score-stat--total .pl-score-stat-value,
.pl-score-stat--total .pl-score-stat-sub {
    color: #fff;
}

.pl-score-stat-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    opacity: 0.7;
    margin-bottom: 8px;
}

.pl-score-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.pl-score-stat-sub {
    font-size: 11px;
    color: var(--dark);
    opacity: 0.5;
    margin-top: 4px;
}

@media (max-width: 700px) {
    .pl-score-stats {
        grid-template-columns: 1fr;
    }
}

/* Score ledger table */
.pl-ledger-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pl-ledger-table th,
.pl-ledger-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

.pl-ledger-table thead th {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pl-ledger-table tbody tr:last-child td {
    border-bottom: none;
}

.pl-ledger-table tbody tr:hover {
    background: rgba(239, 35, 108, 0.03);
}

.pl-ledger-date {
    color: var(--dark);
    opacity: 0.6;
    font-size: 12px;
    white-space: nowrap;
}

.pl-ledger-amount {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

/* Empty state shared style */
.pl-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: var(--light);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pl-empty-state i {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 16px;
}

.pl-empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}

.pl-empty-state p {
    color: var(--dark);
    opacity: 0.6;
    margin: 0;
}

/* Score badge is now an <a>, so guard against the global a / a:hover
   color rules that would otherwise repaint the score number primary
   pink. Keep the existing dark chip look; on hover just dim the chip
   slightly to signal it's a link. */
a.score-badge,
a.score-badge:hover,
a.score-badge:focus,
a.score-badge:visited {
    color: var(--light);
    text-decoration: none;
}

a.score-badge:hover {
    filter: brightness(1.15);
}
