:root {
    --bg-color: #0b0d11;
    --card-bg: rgba(22, 27, 34, 0.75);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover-border: rgba(0, 229, 255, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent: #00e5ff;
    --accent-glow: rgba(0, 229, 255, 0.35);
    --accent-purple: #a855f7;
    --accent-purple-glow: rgba(168, 85, 247, 0.25);
    --btn-bg: rgba(30, 41, 59, 0.7);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 3rem 1.2rem;
    position: relative;
    overflow-x: hidden;
}

/* Ambient Background Lights */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.bg-glow-1 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.bg-glow-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
    bottom: 50px;
    right: 10%;
}

/* Cover Banner */
.cover-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    z-index: 0;
}

.cover-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.6;
}

.cover-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, var(--bg-color) 100%);
}

.container {
    width: 100%;
    max-width: 580px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Profile Section */
.profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-avatar-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
    width: 110px;
    height: 110px;
}

.profile-img-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 25px var(--accent-glow), 0 0 10px rgba(0,0,0,0.8);
    overflow: hidden;
    transition: box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-wrapper:hover .profile-img-container {
    box-shadow: 0 0 35px var(--accent-glow);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.35); /* Zooms in so the circular logo fits edge-to-edge */
    transition: transform 0.4s ease;
}

.profile-avatar-wrapper:hover .profile-img {
    transform: scale(1.42);
}

.online-indicator {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 16px;
    height: 16px;
    background-color: #10b981;
    border: 3px solid var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

.profile-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.verified-badge {
    color: var(--accent);
    display: flex;
    align-items: center;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.location-badge, .genre-badge {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.location-badge {
    border-color: rgba(0, 229, 255, 0.2);
    color: #e2e8f0;
}

.bio {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 420px;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px; /* Squircle instead of perfect circle */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2), inset 1px 1px 2px rgba(255,255,255,0.05);
}

.social-icon:hover:not(.disabled) {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(168, 85, 247, 0.15));
    color: #fff;
    border-color: rgba(0, 229, 255, 0.5);
    transform: translateY(-5px) rotate(8deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3), inset 0 0 15px rgba(168, 85, 247, 0.2);
}

.social-icon.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Main Links Cards */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-family: inherit;
}

.link-card:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 229, 255, 0.15);
}

.booking-card {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(22, 27, 34, 0.85) 100%);
    border-color: rgba(0, 229, 255, 0.3);
}

.booking-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 25px var(--accent-glow);
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.booking-icon-bg {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.yt-icon-bg {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.card-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.link-card:hover .card-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

/* Sections Common */
.section-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.4rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    color: var(--accent);
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.status-pill, .live-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pill {
    background: rgba(168, 85, 247, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.live-pill {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Merch Gallery Grid */
.merch-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.merch-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #12161f;
    aspect-ratio: 1 / 1; /* Square ratio for insta grid style */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.merch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.merch-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(11, 13, 17, 0.88);
    backdrop-filter: blur(8px);
    color: #e2e8f0;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Video Responsive Container */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #000;
}

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

.video-caption {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem 0;
}

.footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 7, 10, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background-color: #12161f;
    margin: 1.5rem auto;
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    position: relative;
    text-align: left;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 229, 255, 0.1);
}

.close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.modal-icon-badge {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.form-group label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label svg {
    color: var(--accent);
}

input, textarea, select {
    width: 100%;
    padding: 0.9rem 1rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300e5ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.65rem auto;
    padding-right: 2.5rem;
    cursor: pointer;
}

select option {
    background-color: #12161f;
    color: #f8fafc;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

/* Date picker in dark mode */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #00e5ff 0%, #00b4d8 100%);
    color: #050b14;
    padding: 1.1rem;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.35);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

/* Success Message */
#success-message {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
}

#success-message h3 {
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#success-message p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================================
   Mobile Optimization (Phones & Small Tablets)
   ========================================================= */
@media (max-width: 580px) {
    body {
        padding: 2rem 1rem;
    }

    .container {
        gap: 1.5rem;
    }

    .section-container {
        padding: 1.1rem;
        border-radius: 16px;
    }

    /* Stack merch images into large, high-res vertical showcase on mobile */
    .merch-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    .merch-card {
        aspect-ratio: 1 / 1;
        max-height: none;
        border-radius: 12px;
    }

    .merch-badge {
        bottom: 10px;
        left: 10px;
        font-size: 0.78rem;
        padding: 0.3rem 0.75rem;
        border-radius: 10px;
    }

    .modal-content {
        padding: 1.8rem 1.2rem;
        margin: 1rem auto;
    }
}
