/* ============================================
   BINKY - Bold Font Template Style
   Black & White Minimal Band Website
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay on every page */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Section Tags (category labels) --- */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
    background-color: transparent;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 14px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.logo a {
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    opacity: 1;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.45);
    transform: scale(1.05);
    transition: transform 8s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: auto;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 0 80px 50px;
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content .hero-subtitle {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

.btn-filled {
    background: #fff;
    color: #000;
}

.btn-filled:hover {
    background: transparent;
    color: #fff;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 10px;
}

/* ============================================
   SECTIONS (General)
   ============================================ */
section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

section:first-of-type {
    border-top: none;
}

.section-header {
    margin-bottom: 50px;
}

.section-header a {
    display: inline-block;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    position: relative;
}

.video-card .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
}

.video-card .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    letter-spacing: 0.02em;
}

/* ============================================
   LIVE / EVENTS SECTION
   ============================================ */
.live-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 40px;
    border-top: none;
    text-align: center;
    overflow: hidden;
}

.live-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.live-hero .section-tag {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 12px;
}

.live-hero .live-subtitle {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.events-list {
    display: flex;
    flex-direction: column;
}

.event-row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr auto;
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.event-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-row:hover {
    background: rgba(255, 255, 255, 0.03);
    padding-left: 24px;
}

.event-row.next-show {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid #fff;
}

.event-row.next-show .event-date {
    color: #fff;
}

.next-show-badge {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 10px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    width: fit-content;
}

.event-date {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.event-venue {
    font-size: 14px;
    font-weight: 600;
}

.event-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.event-ticket {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-ticket:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

/* ============================================
   MERCH SECTION
   ============================================ */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.merch-card {
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.merch-card:hover {
    transform: translateY(-4px);
}

.merch-card .merch-image {
    aspect-ratio: 1;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.merch-card .merch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
    transition: transform 0.5s ease;
}

.merch-card:hover .merch-image img {
    transform: scale(1.05);
}

.merch-card .merch-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.merch-card .merch-placeholder svg {
    width: 60px;
    height: 60px;
}

.merch-card .merch-placeholder span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.merch-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 4px;
}

.merch-card .merch-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.merch-card h4 a {\n    color: inherit;\n    text-decoration: none;\n    transition: color 0.3s ease;\n}\n\n.merch-card h4 a:hover {\n    color: rgba(255, 255, 255, 0.7);\n}\n\n.merch-card .btn {
    width: 100%;
}

/* ============================================
   RELEASES SECTION
   ============================================ */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.release-card {
    text-align: center;
}

.release-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
    margin-bottom: 6px;
}

.release-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.release-card:hover .release-art img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.release-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-overlay .btn {
    min-width: 140px;
}

.release-card h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.release-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.news-card .news-image {
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 16/10;
    background: #111;
    overflow: hidden;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .news-media {
    flex-shrink: 0;
    width: 300px;
}

.news-card .news-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
}

.news-card .news-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.news-card .news-text {
    flex: 1;
}

.news-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-content {
    max-width: 500px;
}

.newsletter-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.newsletter-form input[type="email"]:focus {
    border-color: #fff;
}

.newsletter-form button {
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: transparent;
    color: #fff;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-content {
    max-width: 500px;
}

.contact-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fff;
}

.contact-form button {
    align-self: flex-start;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: transparent;
    color: #fff;
}

/* ============================================
   PRESS SECTION
   ============================================ */
.press-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.press-quote {
    max-width: 700px;
}

.press-quote blockquote {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    font-style: italic;
}

.press-quote cite {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
}

/* ============================================
   RELEASES - FEATURED / SOCIAL EMBEDS
   ============================================ */
.releases-featured {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.releases-featured h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.releases-featured iframe {
    width: 100%;
    border: none;
    border-radius: 0;
}

/* ============================================
   SOCIAL EMBEDS
   ============================================ */
.social-embeds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.social-embed-card {
    background: #111;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-embed-card h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.social-embed-card iframe {
    width: 100%;
    border: none;
}

/* ============================================
   SLIDESHOW (index page carousels)
   ============================================ */
.slideshow-wrapper {
    position: relative;
}

.slideshow-wrapper .videos-grid,
.slideshow-wrapper .releases-grid,
.slideshow-wrapper .merch-grid,
.slideshow-wrapper .gallery-grid,
.slideshow-wrapper .news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 30px;
}

.slideshow-wrapper .releases-grid {
    gap: 40px;
}

.slideshow-wrapper .gallery-grid {
    gap: 4px;
}

.slideshow-wrapper .videos-grid::-webkit-scrollbar,
.slideshow-wrapper .releases-grid::-webkit-scrollbar,
.slideshow-wrapper .merch-grid::-webkit-scrollbar,
.slideshow-wrapper .gallery-grid::-webkit-scrollbar,
.slideshow-wrapper .news-grid::-webkit-scrollbar {
    display: none;
}

.slideshow-wrapper .video-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
}

.slideshow-wrapper .release-card,
.slideshow-wrapper .merch-card {
    flex: 0 0 calc(33.333% - 27px);
    scroll-snap-align: start;
}

.slideshow-wrapper .gallery-item {
    flex: 0 0 calc(25% - 3px);
    scroll-snap-align: start;
}

.slideshow-wrapper .news-card {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
}

.slideshow-wrapper:hover .slideshow-btn {
    opacity: 1;
    pointer-events: auto;
}

.slideshow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.slideshow-btn.slideshow-prev {
    left: -20px;
}

.slideshow-btn.slideshow-next {
    right: -20px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-contact a:hover {
    color: #fff;
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

/* ============================================
   SUBPAGE HEADER (videos.html, live.html, etc.)
   ============================================ */
.subpage-header {
    padding-top: 120px;
    padding-bottom: 0;
    border-top: none;
}

.subpage-header .section-tag {
    font-size: 13px;
    margin-bottom: 0;
}

/* ============================================
   ADMIN PAGE
   ============================================ */
.admin-page {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 100vh;
}

.admin-page h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-page #login-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.admin-page #login-form h2 {
    margin-bottom: 24px;
}

.admin-page #login-form input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.admin-page #login-form input:focus {
    border-color: #fff;
}

.admin-page #login-form button {
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 2px solid #fff;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-page #login-form button:hover {
    background: transparent;
    color: #fff;
}

#admin-dashboard {
    display: none;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    overflow-x: auto;
}

.admin-tab {
    padding: 14px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.admin-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.admin-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Admin Forms */
#admin-dashboard form {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#admin-dashboard form input,
#admin-dashboard form textarea,
#admin-dashboard form select {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

#admin-dashboard form select option {
    background: #000;
    color: #fff;
}

#admin-dashboard form textarea {
    grid-column: span 2;
    min-height: 80px;
    resize: vertical;
}

#admin-dashboard form input:focus,
#admin-dashboard form textarea:focus,
#admin-dashboard form select:focus {
    border-color: #fff;
}

#admin-dashboard form button {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

#admin-dashboard form button:hover {
    background: transparent;
    color: #fff;
}

#admin-dashboard form button[type="button"] {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

#admin-dashboard form button[type="button"]:hover {
    border-color: #fff;
}

/* Admin Items List */
#admin-dashboard .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#admin-dashboard .item h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

#admin-dashboard .item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

#admin-dashboard .sort-btn {
    padding: 4px 8px;
    font-size: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    margin-left: 4px;
    transition: all 0.3s ease;
    line-height: 1;
}

#admin-dashboard .sort-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

#admin-dashboard .sort-btn:disabled {
    opacity: 0.2;
    cursor: default;
}

#admin-dashboard .item-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

#admin-dashboard .edit-btn,
#admin-dashboard .delete-btn {
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s ease;
}

#admin-dashboard .edit-btn:hover {
    background: #fff;
    color: #000;
}

#admin-dashboard .delete-btn:hover {
    background: #ff3333;
    border-color: #ff3333;
}

/* ============================================
   LOADING SKELETONS & EMPTY STATES
   ============================================ */
.loading-skeleton {
    display: grid;
    gap: 20px;
}

.skeleton-item {
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 2px;
}

.skeleton-videos { height: 200px; }
.skeleton-events { height: 60px; }
.skeleton-merch { height: 280px; }
.skeleton-releases { height: 280px; }
.skeleton-news { height: 100px; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.empty-msg {
    opacity: 0.4;
    text-align: center;
    padding: 40px 0;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .videos-grid {
        gap: 20px;
    }

    .merch-grid {
        gap: 20px;
    }

    .releases-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    /* Mobile menu */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #000;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* Hero */
    .hero-content {
        padding: 0 0 60px 24px;
    }

    .hero-content h1 {
        font-size: clamp(32px, 12vw, 56px);
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    /* Live hero */
    .live-hero .section-tag {
        font-size: 28px;
    }

    /* Videos */
    .videos-grid {
        grid-template-columns: 1fr;
    }

    /* Events */
    .event-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 16px;
    }

    .event-row:hover {
        padding-left: 16px;
    }

    .event-ticket {
        justify-self: start;
        margin-top: 8px;
    }

    .next-show-badge {
        display: block;
        margin-left: 0;
        margin-top: 6px;
        width: fit-content;
    }

    /* Merch */
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }

    /* Releases */
    .releases-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
    }

    .news-card .news-image {
        width: 100%;
    }

    .news-card .news-media {
        width: 100%;
    }

    /* Instagram */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Slideshow mobile */
    .slideshow-wrapper .video-card {
        flex: 0 0 100%;
    }

    .slideshow-wrapper .release-card,
    .slideshow-wrapper .merch-card {
        flex: 0 0 calc(50% - 15px);
    }

    .slideshow-wrapper .gallery-item {
        flex: 0 0 calc(50% - 2px);
    }

    .slideshow-wrapper .news-card {
        flex: 0 0 100%;
    }

    .slideshow-btn {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .slideshow-btn.slideshow-prev {
        left: -8px;
    }

    .slideshow-btn.slideshow-next {
        right: -8px;
    }

    /* Social embeds */
    .social-embeds {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        border-right: 2px solid rgba(255, 255, 255, 0.3);
        border-bottom: none;
    }

    /* Admin */
    .admin-tabs {
        flex-wrap: nowrap;
        gap: 0;
    }

    .admin-tab {
        padding: 10px 14px;
        font-size: 10px;
    }

    #admin-dashboard form {
        grid-template-columns: 1fr;
    }

    #admin-dashboard form textarea {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 0 0 40px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    section {
        padding: 48px 0;
    }

    .press-quote blockquote {
        font-size: 18px;
    }
}
