/* THE BACKLINE & GOODIEBAG Page Enhanced Styles */
/* Matching the fun, decorative style of the How It Works page */

/* ========== BACKLINE VIEW WRAPPER ========== */
#backline-view {
    position: relative;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(42, 42, 62, 0.92)),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 107, 53, 0.03) 50px, rgba(255, 107, 53, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 107, 53, 0.03) 50px, rgba(255, 107, 53, 0.03) 51px),
        radial-gradient(circle at 15% 25%, rgba(181, 55, 242, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 60%),
        var(--gunmetal);
    background-size: auto, 50px 50px, 50px 50px, 600px 600px, 500px 500px, 800px 800px, auto;
}

/* ========== FLOATING DECORATIVE ICONS ========== */
.backline-floating-icon {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
    z-index: 0;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.4));
}

/* Guitar - Top Left */
.bl-float-guitar {
    width: 130px;
    height: 130px;
    top: 80px;
    left: -50px;
    transform: rotate(-25deg);
    animation: blFloatSlow 8s ease-in-out infinite;
}

/* Skull - Right side upper */
.bl-float-skull {
    width: 90px;
    height: 90px;
    top: 300px;
    right: -35px;
    transform: rotate(18deg);
    animation: blFloatSlow 6s ease-in-out infinite 1s;
}

/* Pick - Left side middle */
.bl-float-pick {
    width: 70px;
    height: 70px;
    top: 550px;
    left: -25px;
    transform: rotate(30deg);
    animation: blFloatSlow 7s ease-in-out infinite 0.5s;
}

/* Storm/Lightning - Right side middle */
.bl-float-storm {
    width: 110px;
    height: 110px;
    top: 850px;
    right: -45px;
    transform: rotate(-12deg);
    animation: blFloatSlow 9s ease-in-out infinite 2s;
}

/* Horns - Left side lower */
.bl-float-horns {
    width: 100px;
    height: 100px;
    top: 1200px;
    left: -40px;
    transform: rotate(-20deg);
    animation: blFloatSlow 7s ease-in-out infinite 1.5s;
}

/* Pirate Skull - Right side lower */
.bl-float-pirate {
    width: 95px;
    height: 95px;
    top: 1500px;
    right: -40px;
    transform: rotate(22deg);
    animation: blFloatSlow 8s ease-in-out infinite 0.8s;
}

/* Extra icon for longer pages */
.bl-float-guitar-2 {
    width: 85px;
    height: 85px;
    top: 1900px;
    left: -30px;
    transform: rotate(15deg);
    animation: blFloatSlow 10s ease-in-out infinite 3s;
}

.bl-float-pick-2 {
    width: 60px;
    height: 60px;
    top: 2200px;
    right: -20px;
    transform: rotate(-25deg);
    animation: blFloatSlow 6s ease-in-out infinite 2.5s;
}

@keyframes blFloatSlow {
    0%, 100% {
        transform: translateY(0) rotate(var(--bl-rot, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--bl-rot, 0deg));
    }
}

/* ========== ENHANCED BACKLINE CONTAINER ========== */
.backline-container {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 650px;
    margin: 40px auto 20px;
}

/* ========== HERO HEADER ========== */
.backline-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(181, 55, 242, 0.15), rgba(0, 217, 255, 0.08));
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.15),
        0 0 80px rgba(181, 55, 242, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.backline-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 107, 53, 0.05),
        transparent,
        rgba(181, 55, 242, 0.05),
        transparent
    );
    animation: blHeaderSpin 20s linear infinite;
}

@keyframes blHeaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.backline-header > * {
    position: relative;
    z-index: 1;
}

.backline-logo {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: blLogoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

@keyframes blLogoPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }
    50% {
        transform: scale(1.05) translateY(-8px);
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.7));
    }
}

.backline-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 2.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 107, 53, 0.4),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.backline-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========== MAIN TABS (Events vs News) ========== */
.backline-main-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.backline-main-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(42, 52, 57, 0.6);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--silver);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.backline-main-tab .tab-icon {
    font-size: 1.3rem;
}

.backline-main-tab .tab-label {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.backline-main-tab .tab-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--flame-red);
    border-radius: 10px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.5);
}

.backline-main-tab .tab-badge.hidden {
    display: none;
}

.backline-main-tab:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.backline-main-tab.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(181, 55, 242, 0.15));
    border-color: var(--hot-orange);
    color: #fff;
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 0 15px rgba(255, 107, 53, 0.1);
}

.backline-main-tab[data-tab="news"].active {
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.25), rgba(255, 107, 53, 0.15));
    border-color: var(--neon-purple);
    box-shadow:
        0 0 20px rgba(181, 55, 242, 0.3),
        inset 0 0 15px rgba(181, 55, 242, 0.1);
}

/* Section visibility */
.backline-section {
    display: block;
}

.backline-section.hidden {
    display: none;
}

/* ========== SECTION DECORATIONS ========== */
.backline-section-decor {
    position: absolute;
    width: 45px;
    height: 45px;
    opacity: 0.2;
    pointer-events: none;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.backline-event-card:hover .backline-section-decor {
    opacity: 0.35;
    transform: scale(1.1);
}

.bl-decor-right {
    top: 8px;
    right: 12px;
    transform: rotate(15deg);
}

.bl-decor-left {
    top: 8px;
    left: 12px;
    transform: rotate(-15deg);
}

/* ========== ENHANCED FILTER BUTTONS ========== */
.backline-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.backline-filter-btn {
    flex: 1;
    padding: 12px 18px;
    background: rgba(42, 52, 57, 0.7);
    border: 2px solid rgba(192, 197, 206, 0.2);
    border-radius: 12px;
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.backline-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.backline-filter-btn:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--hot-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.backline-filter-btn:hover::before {
    opacity: 1;
}

.backline-filter-btn.active {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(181, 55, 242, 0.15));
    border-color: var(--hot-orange);
    color: #fff;
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.3),
        inset 0 0 20px rgba(255, 107, 53, 0.1);
}

/* ========== ENHANCED EVENT CARDS ========== */
.backline-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.backline-event-card {
    background: linear-gradient(135deg, rgba(42, 52, 57, 0.95), rgba(26, 31, 36, 0.98));
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.backline-event-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-3px);
}

.backline-event-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--hot-orange), var(--neon-purple), var(--electric-blue));
}

.backline-event-card.grabbed {
    border-color: rgba(76, 175, 80, 0.4);
}

.backline-event-card.grabbed::before {
    background: linear-gradient(180deg, #4caf50, #2e7d32);
}

.backline-event-card.soldout {
    opacity: 0.6;
    border-color: rgba(139, 148, 160, 0.3);
}

.backline-event-card.soldout::before {
    background: linear-gradient(180deg, #8b94a0, #5a6270);
}

/* Card Header */
.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 18px 12px 22px;
    background: rgba(0, 0, 0, 0.2);
}

.event-band-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.event-band-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(181, 55, 242, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--hot-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.event-band-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.event-band-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-timestamp {
    font-size: 0.8rem;
    color: var(--silver);
    opacity: 0.8;
}

/* Status Badge */
.event-status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status-badge.available {
    background: rgba(76, 175, 80, 0.25);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
}

.event-status-badge.grabbed {
    background: rgba(0, 217, 255, 0.25);
    color: var(--electric-blue);
    border: 1px solid rgba(0, 217, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.event-status-badge.soldout {
    background: rgba(139, 148, 160, 0.25);
    color: var(--steel);
    border: 1px solid rgba(139, 148, 160, 0.4);
}

/* Card Body */
.event-card-body {
    padding: 5px 22px 18px;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hot-orange);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.event-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* ========== NEWS CARDS ========== */
.backline-news-card {
    background: linear-gradient(135deg, rgba(42, 52, 57, 0.95), rgba(26, 31, 36, 0.98));
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(181, 55, 242, 0.2);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.backline-news-card:hover {
    border-color: rgba(181, 55, 242, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(181, 55, 242, 0.2);
    transform: translateY(-3px);
}

.backline-news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--neon-purple), var(--electric-blue));
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 18px 12px 22px;
    background: rgba(0, 0, 0, 0.2);
}

.news-band-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.news-band-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.3), rgba(0, 217, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(181, 55, 242, 0.3);
}

.news-band-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.news-band-name {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.news-timestamp {
    font-size: 0.8rem;
    color: var(--silver);
    opacity: 0.8;
}

.news-expires-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(181, 55, 242, 0.2);
    color: var(--neon-purple);
    border: 1px solid rgba(181, 55, 242, 0.4);
}

.news-card-body {
    padding: 5px 22px 18px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-purple);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(181, 55, 242, 0.3);
}

.news-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    white-space: pre-line;
}

.news-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.3), rgba(0, 217, 255, 0.2));
    border: 2px solid var(--neon-purple);
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link-btn:hover {
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.5), rgba(0, 217, 255, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(181, 55, 242, 0.4);
}

.news-link-btn::after {
    content: '→';
    transition: transform 0.2s;
}

.news-link-btn:hover::after {
    transform: translateX(3px);
}

/* ========== ENHANCED EMPTY STATE ========== */
.backline-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(42, 52, 57, 0.6), rgba(26, 31, 36, 0.8));
    border-radius: 20px;
    border: 2px dashed rgba(255, 107, 53, 0.3);
    position: relative;
}

.backline-empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: blEmptyBounce 2s ease-in-out infinite;
}

@keyframes blEmptyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.backline-empty-state h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.backline-empty-state p {
    color: var(--silver);
    font-size: 1rem;
    line-height: 1.5;
}

/* ========== INFO CARD (How it works hint) ========== */
.backline-info-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(181, 55, 242, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 25px;
    position: relative;
}

.backline-info-card::before {
    content: '💡';
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.3rem;
    background: var(--gunmetal);
    padding: 0 8px;
}

.backline-info-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.backline-info-card strong {
    color: var(--electric-blue);
}

/* ========== MOBILE SCROLL FIX ========== */
/* Force the backline view to be scrollable on all devices */
#backline-view {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain;
}

#backline-view .profile-scroll-container {
    min-height: 100%;
    padding-bottom: 150px;
}

.backline-container {
    position: relative;
    z-index: 1;
}

.backline-feed {
    overflow: visible;
    min-height: 0;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    #backline-view {
        position: fixed !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
    }

    #backline-view .profile-scroll-container {
        padding-bottom: 180px;
    }

    .backline-container {
        margin: 30px auto 20px;
        padding: 15px;
    }

    .backline-header {
        padding: 25px 20px;
    }

    .backline-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .backline-logo {
        font-size: 3.5rem;
    }

    .backline-subtitle {
        font-size: 0.95rem;
    }

    .backline-filters {
        padding: 12px;
        gap: 8px;
    }

    .backline-filter-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    /* Hide floating icons on tablet */
    .backline-floating-icon {
        display: none;
    }

    .backline-section-decor {
        width: 35px;
        height: 35px;
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    #backline-view .profile-scroll-container {
        padding-bottom: 200px;
    }

    .backline-header {
        padding: 20px 15px;
    }

    .backline-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .backline-logo {
        font-size: 3rem;
    }

    .backline-subtitle {
        font-size: 0.9rem;
    }

    .backline-filters {
        flex-direction: column;
        gap: 8px;
    }

    .backline-filter-btn {
        width: 100%;
    }

    .event-card-header {
        flex-direction: column;
        gap: 12px;
    }

    .event-status-badge {
        align-self: flex-start;
    }

    .backline-section-decor {
        width: 28px;
        height: 28px;
    }

    .backline-empty-state {
        padding: 40px 20px;
    }

    .backline-empty-state .empty-icon {
        font-size: 3rem;
    }
}

/* ========== GOODIEBAG VIEW ENHANCED STYLES ========== */

.goodiebag-view-styled {
    position: relative;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(42, 42, 62, 0.92)),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 217, 255, 0.03) 50px, rgba(0, 217, 255, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 217, 255, 0.03) 50px, rgba(0, 217, 255, 0.03) 51px),
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(181, 55, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
        var(--gunmetal);
    background-size: auto, 50px 50px, 50px 50px, 600px 600px, 500px 500px, 800px 800px, auto;
}

.goodiebag-container {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 650px;
    margin: 40px auto 20px;
}

/* Enhanced Goodiebag Header */
.goodiebag-page-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(181, 55, 242, 0.15), rgba(255, 107, 53, 0.08));
    border-radius: 20px;
    border: 2px solid rgba(0, 217, 255, 0.4);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(0, 217, 255, 0.15),
        0 0 80px rgba(181, 55, 242, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.3);
}

.goodiebag-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 217, 255, 0.05),
        transparent,
        rgba(181, 55, 242, 0.05),
        transparent
    );
    animation: blHeaderSpin 20s linear infinite;
}

.goodiebag-page-header > * {
    position: relative;
    z-index: 1;
}

.goodiebag-logo {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: blLogoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.goodiebag-title {
    font-family: 'Rubik Mono One', monospace;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow:
        0 0 20px rgba(0, 217, 255, 0.6),
        0 0 40px rgba(0, 217, 255, 0.4),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}

.goodiebag-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Enhanced Stats */
.goodiebag-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.goodiebag-stat {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, rgba(42, 52, 57, 0.7), rgba(26, 31, 36, 0.9));
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.goodiebag-stat:hover {
    border-color: rgba(0, 217, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}

.goodiebag-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--electric-blue);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    margin-bottom: 5px;
}

.goodiebag-stat .stat-label {
    font-size: 0.85rem;
    color: var(--silver);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Empty State */
.goodiebag-page-empty {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, rgba(42, 52, 57, 0.6), rgba(26, 31, 36, 0.8));
    border-radius: 20px;
    border: 2px dashed rgba(0, 217, 255, 0.3);
    position: relative;
}

.goodiebag-page-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: blEmptyBounce 2s ease-in-out infinite;
}

.goodiebag-page-empty h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.goodiebag-page-empty p {
    color: var(--silver);
    font-size: 1rem;
    line-height: 1.5;
}

.goodiebag-page-empty strong {
    color: var(--electric-blue);
}

/* Enhanced Grid */
.goodiebag-page-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Goodiebag Item Cards - Ticket Style */
.goodiebag-item {
    background: linear-gradient(135deg, rgba(42, 52, 57, 0.95), rgba(26, 31, 36, 0.98));
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.2);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.goodiebag-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--electric-blue), var(--neon-purple));
}

.goodiebag-item:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

.goodiebag-item.claimed {
    border-color: rgba(76, 175, 80, 0.4);
}

.goodiebag-item.claimed::before {
    background: linear-gradient(180deg, #4caf50, #2e7d32);
}

/* Mobile Responsive for Goodiebag */
@media (max-width: 768px) {
    .goodiebag-container {
        margin: 30px auto 20px;
        padding: 15px;
    }

    .goodiebag-page-header {
        padding: 25px 20px;
    }

    .goodiebag-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .goodiebag-logo {
        font-size: 3.5rem;
    }

    .goodiebag-stats {
        gap: 10px;
        padding: 12px;
    }

    .goodiebag-stat {
        padding: 12px 8px;
    }

    .goodiebag-stat .stat-value {
        font-size: 1.6rem;
    }

    .goodiebag-stat .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .goodiebag-page-header {
        padding: 20px 15px;
    }

    .goodiebag-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .goodiebag-logo {
        font-size: 3rem;
    }

    .goodiebag-stats {
        flex-direction: row;
        gap: 8px;
    }

    .goodiebag-stat .stat-value {
        font-size: 1.4rem;
    }

    .goodiebag-stat .stat-label {
        font-size: 0.7rem;
    }

    .goodiebag-page-empty {
        padding: 40px 20px;
    }

    .goodiebag-page-empty .empty-icon {
        font-size: 3rem;
    }
}
