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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f3f3f3;
    overflow-x: hidden;
}

h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 4rem;
    margin-bottom: 70px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #b0bec5;
    text-shadow: 0 0 10px rgba(176, 190, 197, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #b0bec5;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b0bec5;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Patrons Link - Distinctive Styling */
.see-more-link {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a !important;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.see-more-link:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

/* Remove hover underline for Patrons button */
.see-more-link::after {
    display: none !important;
}

.see-more-link:hover::after {
    width: 0 !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Account Icon */
.account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b0bec5;
    border: 1px solid rgba(176, 190, 197, 0.3);
}

.account-icon:hover {
    background: rgba(176, 190, 197, 0.2);
    color: #ffffff;
    border-color: #b0bec5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

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

.account-icon:hover svg {
    transform: scale(1.1);
}

/* Account Dropdown Styles */
.account-dropdown {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 180px;
    z-index: 3000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.2s ease;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #b0bec5;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(176, 190, 197, 0.1);
    color: #ffffff;
}

.dropdown-item svg {
    flex-shrink: 0;
}

/* Manage Account Page Styles */
.manage-hero {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0 2rem;
}

.manage-hero-content h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #b0bec5;
}

.manage-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.manage-section {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.manage-container h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 2rem;
    color: #b0bec5;
    text-align: center;
    margin-bottom: 2rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(176, 190, 197, 0.2);
    text-align: center;
}

.profile-header-simple {
    margin-bottom: 1.5rem;
}

.profile-text-info {
    text-align: center;
}

.profile-text-info h2 {
    font-size: 2rem;
    color: #b0bec5;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.profile-main-email {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.profile-details {
    margin-bottom: 1rem;
}

.profile-detail {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.profile-info h3 {
    font-size: 1.5rem;
    color: #b0bec5;
    margin-bottom: 0.5rem;
}

.profile-email {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.profile-join-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}


.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.settings-section, .danger-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(176, 190, 197, 0.1);
}

.settings-section h3, .danger-section h3 {
    color: #b0bec5;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(176, 190, 197, 0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-info h4 {
    color: #b0bec5;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.setting-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #b0bec5;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.danger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
}

.danger-info h4 {
    color: #f44336;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.danger-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.save-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #b0bec5;
    border: 1px solid rgba(176, 190, 197, 0.3);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
    color: white;
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(244, 67, 54, 0.4);
    background: linear-gradient(45deg, #d32f2f, #f44336);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Mobile First - Default styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

/* Improved responsive video positioning */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

/* Enhanced mobile video handling */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        overflow: hidden;
    }

    .hero-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        object-fit: cover;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(176, 190, 197, 0.8);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.shows-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.tab-button {
    background: rgba(255, 255, 255, 0.1);
    color: #b0bec5;
    border: 2px solid rgba(176, 190, 197, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.tab-button:hover {
    background: rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
}

.tab-button.active {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border-color: #b0bec5;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.show-year {
    font-size: 0.8rem;
    color: #90a4ae;
    font-weight: normal;
}

/* Improved responsive logo sizing */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-img {
        height: clamp(35px, 4vw, 40px);
    }

    .hero-logo {
        height: clamp(150px, 15vw, 180px);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: clamp(30px, 4vw, 35px);
    }

    .hero-logo {
        height: clamp(100px, 12vw, 120px);
    }

    /* Mobile responsive for account dropdown */
    .account-dropdown {
        right: 1rem;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: clamp(25px, 4vw, 30px);
    }

    /* Very small screen responsive for account dropdown */
    .account-dropdown {
        right: 0.5rem;
        left: 0.5rem;
        min-width: auto;
    }

    .hero-logo {
        height: clamp(80px, 10vw, 100px);
    }
}


.cta-button {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cta-button.show {
    opacity: 1;
    visibility: visible;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    backdrop-filter: blur(15px);
}

/* Updates Button - Brighter, more square design */
.updates-button {
    display: block;
    padding: clamp(0.4rem, 1vw, 0.6rem) clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #37383b;
    border-color: #b0bec5;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.6vw, 1rem);
    transition: all 0.3s ease;
    border: none;
    margin-top: 1rem;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    visibility: hidden;
    /* transition: opacity 0.5s ease, visibility 0.5s ease; */
}

.updates-button.show {
    opacity: 1;
    visibility: visible;
}

.updates-button:hover {
    background: linear-gradient(45deg, #cfd8dc, #b0bec5);
    border-color: #b0bec5;
    transform: translateY(-2px);
}
/* Section Styles */
.section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #b0bec5;
    position: relative;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.band-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.band-image:hover {
    transform: scale(1.05);
}

.band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Shows Section */
.shows-grid {
    display: grid;
    gap: 2rem;
}

.show-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 190, 197, 0.3);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: center;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
}

.show-date {
    text-align: center;
    min-width: 80px;
}

.show-month {
    font-size: 0.9rem;
    color: #b0bec5;
    font-weight: bold;
}

.show-day {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.show-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #b0bec5;
}

.show-venue {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.show-location {
    opacity: 0.8;
    font-size: 0.9rem;
}

.show-extra {
    grid-column: 1 / -1;
    display: none;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(176, 190, 197, 0.2);
    color: #ccc;
    animation: slideDown 0.3s ease-out;
}

.show-extra.show {
    display: block;
}

.show-extra p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.show-extra p:last-of-type {
    margin-bottom: 1.2rem;
    font-style: italic;
    color: #ddd;
}

.ticket-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.ticket-link {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.2);
}

.ticket-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 190, 197, 0.4);
}

.ticket-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
}

/* Listen Section */
#listen {
    padding: 60px 20px;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

#listen summary {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

.video-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(176, 190, 197, 0.15);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(144, 164, 174, 0.1);
    overflow: hidden;
    position: relative;
}

.video-card:hover {
    box-shadow: 0 0 25px rgba(176, 190, 197, 0.3);
    border-color: #b0bec5;
}

.video-card summary {
    cursor: pointer;
    list-style: none;
    font-size: 1.3rem;
    color: #b0bec5;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.video-card summary:hover {
    color: #ffffff;
}

.video-card[open] {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(176, 190, 197, 0.4);
}

.video-card[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.video-info {
    color: #ccc;
    padding-top: 0.5rem;
    animation: fadeIn 0.4s ease-in-out;
}

.video-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.video-info video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-info iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: none;
}

@media (max-width: 768px) {
    .video-info iframe {
        height: 200px;
    }
}

/* Merch Section */
#merch {
    padding: 100px 20px; /* Increased from 60px to 100px */
    text-align: center;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr)); /* Increased from 500px to 600px */
    gap: 3rem; /* Increased from 2rem to 3rem */
    max-width: 1400px; /* Increased from 1200px to 1400px */
    margin: 0 auto;
}

.merch-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px; /* Increased from 15px to 20px */
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 190, 197, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    display: grid;
    grid-template-columns: 300px 1fr; /* Increased from 200px to 300px */
    gap: 0;
    text-align: left;
    min-height: 300px; /* Added minimum height */
}

.merch-item:hover {
    transform: translateY(-15px); /* Increased from -10px to -15px */
    box-shadow: 0 20px 40px rgba(176, 190, 197, 0.4); /* Enhanced hover shadow */
    border-color: #b0bec5;
}

.merch-image {
    width: 300px; /* Increased from 200px to 300px */
    height: 300px; /* Increased from 200px to 300px */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 20px; /* Added padding around image */
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.merch-item:hover .merch-image img {
    transform: scale(1.08); /* Slightly increased scale effect */
}

.merch-info {
    padding: 2.5rem; /* Increased from 1.5rem to 2.5rem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    gap: 1rem; /* Added gap between elements */
}

.merch-info h3 {
    font-size: 1.4rem; /* Increased from 1.2rem */
    color: #b0bec5;
    margin-bottom: 0.8rem; /* Increased margin */
    font-weight: 600;
}

.merch-info p {
    font-size: 1rem; /* Increased from 0.9rem */
    opacity: 0.8;
    margin-bottom: 1.5rem; /* Increased margin */
    line-height: 1.6; /* Increased line height */
}

.merch-price {
    font-size: 1.5rem; /* Increased from 1.3rem */
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem; /* Increased margin */
}

.merch-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 1rem 2.5rem; /* Increased padding */
    border: none;
    border-radius: 30px; /* Increased from 25px */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem; /* Increased from 0.9rem */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Increased letter spacing */
    width: fit-content;
}

.merch-btn:hover {
    transform: translateY(-3px); /* Increased from -2px */
    box-shadow: 0 12px 25px rgba(176, 190, 197, 0.5); /* Enhanced shadow */
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

/* Mobile responsive updates */
@media (max-width: 768px) {
    #merch {
        padding: 80px 20px; /* Increased mobile padding */
    }

    .merch-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Increased gap */
        margin: 0 1rem;
    }
    
    .merch-item {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 1.5rem; /* Added padding to item */
    }
    
    .merch-image {
        width: 100%;
        height: 250px; /* Increased from 200px */
        padding: 15px;
    }
    
    .merch-info {
        padding: 1.5rem;
    }
    
    .merch-btn {
        width: 100%;
        padding: 1.2rem 2rem; /* Increased mobile button padding */
    }
}

@media (max-width: 480px) {
    #merch {
        padding: 60px 15px;
    }

    .merch-item {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .merch-image {
        height: 220px;
        padding: 10px;
    }
    
    .merch-info h3 {
        font-size: 1.2rem;
    }
    
    .merch-price {
        font-size: 1.3rem;
    }
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(176, 190, 197, 0.2);
    border-radius: 50%;
    color: #b0bec5;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.social-link:hover {
    background: #b0bec5;
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intermediate breakpoint for better scaling */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(3rem, 4vw, 3.5rem);
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .about-content {
        gap: 2.5rem;
    }

    .merch-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 2.5rem;
    }

    .merch-item {
        grid-template-columns: 250px 1fr;
    }

    .merch-image {
        width: 250px;
        height: 250px;
    }

    .profile-grid {
        gap: 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .show-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .about-text {
        max-width: 90%;
    }

    .ticket-links {
        flex-direction: column;
    }

    .ticket-link {
        text-align: center;
    }

    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .merch-item {
        grid-template-columns: 1fr;
        text-align: center;
        margin: 0 1rem;
    }
    
    .merch-image {
        width: 100%;
        height: 200px;
    }
    
    .merch-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.8rem, 4vw, 2rem);
        margin-bottom: 0.7rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .show-card {
        padding: 1.5rem;
    }

    .merch-item {
        margin: 0 1rem;
    }
}

/* Responsive tweaks */
@media (min-width: 769px) {
    #stats .container {
        padding: 40px 60px;
        /* Increased padding */
        margin: 40px auto;
        max-width: 1400px;
        /* Much wider - increased from 1200px */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        /* Increased gap */
        background-color: #1a1a1a;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        white-space: nowrap;
    }

    #youtubeLogoLarge {
        display: block !important;
        width: 280px;
        /* Reduced size to fit in row */
        flex-shrink: 0;
    }

    #youtubeLogoSmall {
        display: none !important;
    }

    .subCount {
        font-size: 3.2em;
        /* Reduced size to fit in row */
        color: #ff0000;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    #stats .container {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        white-space: normal;
    }

    .subCount {
        font-size: 2.8em;
        text-align: center;
    }

    .subLabel {
        margin-left: 0;
        align-self: center;
    }
}

.logo-img {
    height: clamp(35px, 4vw, 45px);
    width: auto;
    object-fit: contain;
}

/* Logo in hero section */
.hero-logo {
    height: clamp(150px, 15vw, 220px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

/* Responsive CTA button handled by clamp() above */
.band-profiles {
    margin-top: 4rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Default profile card - always takes 1 column */
.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(176, 190, 197, 0.2);
    grid-column: span 1; /* Always span 1 column */
}

/* Compressed state - smaller and faded */
.profile-card.compressed {
    transform: scale(0.75);
    opacity: 0.4;
    filter: blur(1px);
}

/* Expanded state - larger but still in same grid position */
.profile-card.expanded {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Image styling */
.profile-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
    object-position: top;
}

.profile-card.expanded img {
    height: 250px;
}

/* Profile info - hidden by default */
.profile-info {
    display: none;
    padding: 1.5rem;
    color: #ccc;
    text-align: left;
    background: rgba(0, 0, 0, 0.8);
}

.profile-info h3 {
    color: #b0bec5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.profile-info p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Show info when expanded */
.profile-card.expanded .profile-info {
    display: block;
}

/* Collapse arrow */
.collapse-arrow {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 50%;
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    display: none;
    z-index: 20;
    transition: all 0.3s ease;
}

.collapse-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Show arrow only when card is expanded */
.profile-card.expanded .collapse-arrow {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card.expanded {
        transform: scale(1.05);
    }
    
    .profile-card.compressed {
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .profile-card.expanded {
        transform: scale(1.02);
    }
    
    .profile-card.compressed {
        transform: scale(0.9);
    }
}
/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(176, 190, 197, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b0bec5;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b0bec5;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
}

@media (max-width: 768px) {
    .contact-form {
        margin: 1rem auto;
        padding: 1.5rem;
    }
}
/* Support The Band Section */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.social-media, .donate-section {
    text-align: center;
}

.social-media h3, .donate-section h3 {
    font-size: 1.8rem;
    color: #b0bec5;
    margin-bottom: 2rem;
    font-weight: 500;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(176, 190, 197, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: rgba(176, 190, 197, 0.15);
    transform: translateY(-8px) scale(1.05);
    border-color: #b0bec5;
    box-shadow: 0 15px 30px rgba(176, 190, 197, 0.3);
}

.social-link img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.social-link:hover img {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Platform-specific colors */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-link.youtube:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

.social-link.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #0d47a1);
    border-color: #1877f2;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #000000, #ff0050);
    border-color: #ff0050;
}

.donate-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.donate-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donate-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.donate-btn.paypal {
    background: #0070ba;
    color: white;
    border-color: #0070ba;
}

.donate-btn.paypal:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
}

.donate-btn.venmo {
    background: #3d95ce;
    color: white;
    border-color: #3d95ce;
}

.donate-btn.venmo:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 149, 206, 0.4);
}

.donate-btn.exclusive {
    background: #f3f3f3;
    color: black;
    border-color: #f3f3f3;
}

.donate-btn.exclusive:hover {
    background: #f3f3f3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 243, 243, 0.4);
}


/* Responsive Design for Support Section */
@media (max-width: 768px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 300px;
    }
    
    .social-link {
        height: 100px;
    }
    
    .social-link img {
        width: 50px;
        height: 50px;
    }
    
    .donate-links {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 250px;
    }
    
    .social-link {
        height: 80px;
    }
    
    .social-link img {
        width: 40px;
        height: 40px;
    }
    
    .donate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.contact-email {
    margin-top: 2rem;
    text-align: center;
}

.contact-email a {
    color: #b0bec5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #ffffff;
}
.meet-the-band-header {
    text-align: center;
    margin: 4rem 0 2rem 0; /* Increased top margin */
}

.meet-the-band-header h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #b0bec5;
    margin-bottom: 1rem;
}

.meet-the-band-description {
    font-size: 1rem;
    color: #ccc;
    opacity: 0.8;
    margin-bottom: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .meet-the-band-header {
        margin: 5rem 0 2rem 0; /* Even more space on mobile */
    }
    
    .meet-the-band-header h2 {
        font-size: 2rem;
    }
    
    .meet-the-band-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}
/* Video Grid Section */
/* Video Grid Section */
#watch {
    text-align: center; /* Center everything in the watch section */
}

#watch .video-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin: 2rem auto; /* Center the grid */
    width: 100%;
    max-width: 1200px; /* Add max-width for better centering */
    justify-items: center; /* Center grid items */
}

.video {
    position: relative;
    width: 100%;
    max-width: 400px; /* Limit max width for better centering */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.view-more-btn {
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176, 190, 197, 0.5);
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

.hidden {
    display: none !important;
}

/* Responsive design for video grid */
@media (max-width: 968px) {
    #watch .video-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        max-width: 800px; /* Smaller max-width for 2-column layout */
    }
    
    .video {
        max-width: none; /* Remove max-width constraint on smaller screens */
    }
}

@media (max-width: 640px) {
    #watch .video-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin: 1.5rem auto; /* Ensure centering on mobile */
        max-width: 400px; /* Limit width for single column */
    }
    
    .view-more-btn {
        margin: 2rem auto 0;
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: auto; /* Ensure button doesn't stretch full width */
        max-width: 200px; /* Limit button width */
    }
}

/* Feed Page Styles */
.feed-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0 2rem;
}

.feed-hero-content h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #b0bec5;
}

.feed-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.feed-section {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #ffffff;
    color: #000000;
}

.feed-container h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.feed-post {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feed-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #000000;
}

.featured-post {
    border: 3px solid #000000;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    justify-content: space-between;
}

.post-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.post-info h3 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.2rem;
}

.post-time {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

.post-content {
    margin-bottom: 1.5rem;
}

.post-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.post-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    border-left: 4px solid #b0bec5;
}

.event-preview h4 {
    color: #b0bec5;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.event-preview p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
}

.post-actions button {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.post-actions button:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.post-actions button.liked {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    border-color: #ff6b6b;
    color: white;
}

.rsvp-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049) !important;
    border-color: #4CAF50 !important;
    color: white !important;
}

.comments-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.comment-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

input.comment-input,
.comment-input {
    flex: 1;
    padding: 0.8rem 0.8rem 0.8rem 2.2rem !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
}

.comment-input:focus {
    outline: none;
    border-color: #b0bec5;
}

.comment-form button {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comment-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 0.5rem;
    align-items: flex-start;
    min-width: 0;
    overflow: hidden;
}

.view-replies-btn {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    color: #8e8e8e;
    cursor: pointer;
    font-size: 14px;
    padding: 1rem;
    margin: 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
    overflow: hidden;
    transition: color 0.2s ease;
    width: 100%;
    text-align: left;
}

.comment-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.comment-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Authentication Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(176, 190, 197, 0.3);
    animation: slideInUp 0.3s ease;
    overflow: hidden;
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
}

.auth-modal-header h2 {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: #b0bec5;
    margin: 0;
}

.auth-close {
    color: #b0bec5;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.auth-close:hover {
    color: #ffffff;
    background: rgba(176, 190, 197, 0.2);
    transform: scale(1.1);
}

/* Patron CTA Section */
.patron-cta-section {
    text-align: center;
    padding: 1rem 0;
}

.patron-cta-content h3 {
    color: #b0bec5;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.patron-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.patron-cta-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.patron-cta-btn:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

/* Tier Paywall Modal Styles */
.tier-paywall-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.tier-paywall-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #b0bec5;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.tier-paywall-close:hover {
    color: #ffffff;
}

.tier-paywall-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 2rem;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-paywall-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-paywall-header h2 {
    color: #b0bec5;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.tier-paywall-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.tier-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tier-option {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tier-option:hover {
    transform: translateY(-5px);
}

.tier-option.featured {
    transform: scale(1.05);
}

.tier-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-card {
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.1), rgba(144, 164, 174, 0.05));
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    border-color: rgba(176, 190, 197, 0.6);
    box-shadow: 0 10px 30px rgba(176, 190, 197, 0.2);
}

.tier-card.featured {
    border-color: #b0bec5;
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.2), rgba(144, 164, 174, 0.1));
    box-shadow: 0 10px 30px rgba(176, 190, 197, 0.3);
}

.tier-card.free {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.tier-header {
    margin-bottom: 1.5rem;
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge:not(.free) {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
}

.tier-badge.free {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.tier-pricing {
    margin-bottom: 1.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b0bec5;
    line-height: 1;
}

.tier-card.free .tier-price {
    color: #ffffff;
}

.tier-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.tier-benefits {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.tier-benefits li:before {
    content: '✓';
    color: #b0bec5;
    font-weight: bold;
    margin-right: 0.5rem;
}

.tier-button {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.tier-button:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

.tier-button.featured {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

.tier-button.free {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tier-button.free:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Responsive for Tier Paywall */
@media (max-width: 768px) {
    .tier-paywall-content {
        width: 98%;
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .tier-selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tier-option.featured {
        transform: none;
    }
    
    .tier-option.featured:hover {
        transform: translateY(-5px);
    }
    
    .tier-card {
        padding: 1.5rem;
    }
    
    .tier-price {
        font-size: 2rem;
    }
}

/* Thank You Modal Styles */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    backdrop-filter: blur(10px);
}

.thank-you-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: thankYouSlideIn 0.5s ease-out;
}

@keyframes thankYouSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.thank-you-header h2 {
    color: #b0bec5;
    font-size: 2.5rem;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.thank-you-message h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.thank-you-heart {
    font-size: 3rem;
    margin: 1rem 0;
    animation: heartBeat 1.5s ease-in-out infinite;
}

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

.thank-you-close-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.thank-you-close-btn:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

/* Mobile Responsive for Thank You Modal */
@media (max-width: 768px) {
    .thank-you-content {
        width: 95%;
        padding: 2rem;
        margin: 1rem;
    }
    
    .thank-you-header h2 {
        font-size: 2rem;
    }
    
    .thank-you-message h3 {
        font-size: 1.3rem;
    }
    
    .thank-you-message p {
        font-size: 1rem;
    }
}

.auth-modal-body {
    padding: 2rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-form-group {
    margin-bottom: 1.5rem;
}

.auth-form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form-group input:focus {
    outline: none;
    border-color: #b0bec5;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.auth-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-divider {
    text-align: center;
    margin: 0.8rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(176, 190, 197, 0.3);
}

.auth-divider span {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0 1rem;
    color: #b0bec5;
    font-size: 0.9rem;
}

.google-auth-btn {
    width: 100%;
    padding: 1rem;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.google-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.google-auth-btn svg {
    flex-shrink: 0;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.auth-switch p {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.auth-switch a {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
}

.auth-switch a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(176, 190, 197, 0.4);
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

/* Modal Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Feed Page */
@media (max-width: 768px) {
    .feed-hero {
        height: 30vh;
        padding: 0 1rem;
    }

    .feed-hero-content h1 {
        font-size: 2rem;
    }

    .feed-hero-content p {
        font-size: 1rem;
    }

    .feed-section {
        padding: 2rem 1rem;
    }

    .feed-container h2 {
        font-size: 2rem;
    }

    .feed-post {
        padding: 1.5rem;
    }

    .post-header {
        gap: 0.8rem;
    }

    .post-avatar {
        width: 40px;
        height: 40px;
    }

    .post-actions {
        gap: 0.5rem;
    }

    .post-actions button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .comment-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comment-input {
        margin-bottom: 0.5rem;
    }

    .post-image {
        height: 200px;
    }
}

/* Mobile Responsive for Manage Page */
@media (max-width: 768px) {
    .manage-hero {
        height: 25vh;
        padding: 0 1rem;
    }

    .manage-hero-content h1 {
        font-size: 2rem;
    }

    .manage-hero-content p {
        font-size: 1rem;
    }

    .manage-section {
        padding: 2rem 1rem;
    }

    .manage-container h2 {
        font-size: 1.8rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-text-info h2 {
        font-size: 1.5rem;
    }

    .profile-main-email {
        font-size: 1rem;
    }

    .profile-actions {
        margin-top: 1rem;
    }


    .settings-section {
        padding: 1.5rem;
    }

    .setting-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .setting-item:has(.btn-primary) {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .setting-item .subscription-status {
        border: 1px solid #4CAF50;
        border-radius: 8px;
        padding: 12px;
        margin-top: 12px;
        text-align: center;
        color: #4CAF50;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .subscription-tiers {
        padding: 3rem 2rem;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .subscription-tiers h2 {
        font-family: "Raleway", "Inter", Arial, sans-serif;
        font-weight: 300;
        font-size: 2.5rem;
        color: #b0bec5;
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 0;
    }

    .tiers-subtitle {
        color: rgba(176, 190, 197, 0.8);
        margin-bottom: 2.5rem;
        font-size: 1.2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        text-align: center;
    }


    .tier-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 2px solid rgba(176, 190, 197, 0.25) !important;
        border-radius: 20px !important;
        padding: 3.5rem 2rem !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        position: relative !important;
        overflow: hidden !important;
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    }

    .tier-card::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(176, 190, 197, 0.8), transparent);
        transform: translateX(-50%);
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    .tier-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(176, 190, 197, 0.5);
        transform: translateY(-4px);
        box-shadow:
            0 12px 30px rgba(176, 190, 197, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .tier-card:hover::before {
        width: 80%;
    }

    .tier-card.featured {
        background: rgba(255, 255, 255, 0.08);
        border: 3px solid rgba(176, 190, 197, 0.45);
        box-shadow:
            0 6px 20px rgba(176, 190, 197, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .tier-card.featured::before {
        background: linear-gradient(90deg, transparent, rgba(176, 190, 197, 1), transparent);
        height: 4px;
    }

    .tier-card.featured:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(176, 190, 197, 0.7);
        box-shadow:
            0 16px 40px rgba(176, 190, 197, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .tier-card.featured:hover::before {
        width: 90%;
    }

    .tier-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 4rem;
        position: relative;
    }

    .tier-header .tier-badge {
        margin: 0 auto;
        display: inline-block;
    }

    .tier-header h5 {
        color: #b0bec5;
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        font-family: "Raleway", "Inter", Arial, sans-serif;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        text-align: center;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
    }

    .tier-badge {
        background: linear-gradient(45deg, rgba(176, 190, 197, 0.3), rgba(176, 190, 197, 0.1));
        color: #b0bec5;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 1px solid rgba(176, 190, 197, 0.3);
        backdrop-filter: blur(10px);
    }

}

/* Universal tier-pricing spacing for all screen sizes */
.tier-pricing {
    margin: 3rem 0 3.5rem 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid rgba(176, 190, 197, 0.2) !important;
    text-align: center !important;
}

/* Universal tier-header spacing for all screen sizes */
.tier-header {
    margin-bottom: 3rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
}

@media (max-width: 480px) {
    .feed-hero-content h1 {
        font-size: 1.5rem;
    }

    .feed-container h2 {
        font-size: 1.8rem;
    }

    .feed-post {
        padding: 1rem;
    }

    .post-actions {
        flex-wrap: wrap;
    }

    .event-preview {
        padding: 1rem;
    }

    .subscription-tiers {
        padding: 2.5rem 1rem;
    }

    .subscription-tiers h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .tiers-subtitle {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }

    .tiers-carousel {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .tiers-track {
        gap: 1.5rem;
        padding: 0.75rem 0;
        align-items: flex-start;
    }

    .tier-slide {
        flex-basis: 280px;
    }

    .tier-card {
        padding: 3rem 1.5rem !important;
        border-width: 2px !important;
        border-radius: 18px !important;
    }

    .tier-card.featured {
        border-width: 3px !important;
    }

    .tier-price {
        font-size: 1.9rem !important;
    }

    .tier-pricing {
        margin: 3.5rem 0 3rem 0 !important;
    }

    .tier-benefits {
        padding: 2.5rem !important;
        margin: 2rem 0 2.5rem 0 !important;
    }

    .tier-benefits p {
        font-size: 0.9rem;
        padding: 0.75rem 0 0.75rem 2rem;
        text-align: left;
        border-bottom: 1px solid rgba(176, 190, 197, 0.15);
        line-height: 1.5;
        margin: 0;
    }

    .tier-benefits p:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .tier-benefits p:before {
        content: "•";
        left: 0.5rem;
        color: #b0bec5;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .tier-button {
        padding: 0.875rem 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .tier-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Mobile Responsive for Auth Modal */
@media (max-width: 768px) {
    .auth-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .auth-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .auth-modal-header h2 {
        font-size: 1.5rem;
    }

    .auth-modal-body {
        padding: 1.5rem;
    }

    .account-icon {
        width: 35px;
        height: 35px;
    }

    .account-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .auth-modal-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .auth-modal-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }
    
    .auth-modal-body {
        padding: 1rem;
    }
    
    .auth-form-group input {
        padding: 0.8rem;
    }
    
    .auth-submit-btn,
    .google-auth-btn {
        padding: 0.8rem;
    }
}

    .tiers-carousel {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 2rem;
        overflow: hidden;
    }

    .tiers-track {
        display: flex;
        gap: 2rem;
        transition: transform 0.5s ease;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .tier-slide {
        flex: 0 0 350px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        opacity: 0.3;
        transform: scale(0.8);
    }

    .tier-slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 10;
    }

    /* Emphasize the selected (centered) card */
    .tier-slide.active .tier-card {
        border-color: rgba(176, 190, 197, 0.8) !important;
        box-shadow:
            0 16px 40px rgba(176, 190, 197, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border-radius: 10px !important;
        border: none !important;
        padding: 3rem 1.5rem !important;
        gap: 1rem !important;
        text-align: center !important;

    }
    .tier-slide.active .tier-card h5 {
        font-size: 1.5rem;
    }

    .tier-slide.prev,
    .tier-slide.next {
        opacity: 0.5;
        transform: scale(0.9);
    }

    /* Subtle border on neighbors so they feel present */
    .tier-slide.prev .tier-card,
    .tier-slide.next .tier-card {
        border-color: rgba(176, 190, 197, 0.35);
        background: rgba(255, 255, 255, 0.06);
    }

    .tier-nav {
        background: rgba(176, 190, 197, 0.2);
        border: 2px solid rgba(176, 190, 197, 0.5);
        color: #b0bec5;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: all 0.3s ease;
        font-size: 1.4rem;
        font-weight: bold;
        position: absolute;
        z-index: 20;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .tier-nav.prev {
        left: 20px;
    }

    .tier-nav.next {
        right: 20px;
    }

    .tier-nav:hover {
        background: rgba(176, 190, 197, 0.3);
        color: #fff;
        border-color: rgba(176, 190, 197, 0.7);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(176, 190, 197, 0.3);
    }

    .tier-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: none;
    }

    .tier-nav:disabled:hover {
        background: rgba(176, 190, 197, 0.2);
        border-color: rgba(176, 190, 197, 0.5);
        color: #b0bec5;
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 768px) {
    .tiers-carousel {
        padding: 2rem 1rem;
        overflow: hidden;
    }

    .tier-slide {
        flex-basis: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .tiers-track {
        gap: 0;
        justify-content: center;
        width: 100%;
    }

    .tier-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .tier-nav.prev {
        left: 10px;
    }

    .tier-nav.next {
        right: 10px;
    }

    .tier-benefits {
        text-align: left !important;
        margin: 2rem 0 2.5rem 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        padding: 2.5rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(176, 190, 197, 0.15) !important;
    }

    .tier-benefits p {
        color: rgba(176, 190, 197, 0.9) !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
        padding: 0.75rem 0 0.75rem 2rem !important;
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(176, 190, 197, 0.15);
        line-height: 1.5;
        font-family: "Inter", "Raleway", Arial, sans-serif !important;
    }

    .tier-benefits p:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .tier-benefits p:before {
        content: "•";
        position: absolute;
        left: 0.5rem;
        color: #b0bec5;
        font-weight: bold;
        font-size: 1.1rem;
    }
}

/* Ensure desktop (769px+) keeps the exact same tier-benefits look */
@media (min-width: 769px) {
    .tier-benefits {
        text-align: left !important;
        margin: 2rem 0 2.5rem 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        padding: 2.5rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(176, 190, 197, 0.15) !important;
    }

    .tier-benefits p {
        color: rgba(176, 190, 197, 0.9) !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
        padding: 0.75rem 0 0.75rem 2rem !important;
        position: relative !important;
        display: block !important;
        border-bottom: 1px solid rgba(176, 190, 197, 0.15) !important;
        line-height: 1.5 !important;
        text-align: left !important;
        font-family: "Inter", "Raleway", Arial, sans-serif !important;
    }

    .tier-benefits p:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .tier-benefits p:before {
        content: "•" !important;
        position: absolute !important;
        left: 0.5rem !important;
        color: #b0bec5 !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
    }
}

/* Universal tier styling - apply mobile font styles to all screen sizes */
.tier-benefits {
    text-align: left !important;
    margin: 2rem 0 2.5rem 0 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 2.5rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(176, 190, 197, 0.15) !important;
}

.tier-benefits p {
    color: rgba(176, 190, 197, 0.9) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding: 0.75rem 0 0.75rem 2rem !important;
    position: relative !important;
    display: block !important;
    border-bottom: 1px solid rgba(176, 190, 197, 0.15) !important;
    line-height: 1.5 !important;
    font-family: "Inter", "Raleway", Arial, sans-serif !important;
}

.tier-benefits p:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.tier-benefits p:before {
    content: "•" !important;
    position: absolute !important;
    left: 0.5rem !important;
    color: #b0bec5 !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

/* Universal tier price and period styling */
.tier-price {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin: 0 !important;
    display: inline-block !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.tier-period {
    color: rgba(176, 190, 197, 0.9) !important;
    font-size: 1rem !important;
    margin-left: 0.5rem !important;
    font-weight: 500 !important;
    vertical-align: super !important;
}

/* Universal tier badge styling */
.tier-badge {
    background: linear-gradient(45deg, rgba(176, 190, 197, 0.3), rgba(176, 190, 197, 0.1)) !important;
    color: #b0bec5 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 1px solid rgba(176, 190, 197, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

/* Comment badge next to usernames */
.comment-username {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.comment-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #b0bec5;
    text-transform: none;
}

.comment-badge.tier-1 { color: #5a9fd4; border-color: rgba(90,159,212,0.6); background: rgba(90,159,212,0.2); }
.comment-badge.tier-2 { color: #5a9a96; border-color: rgba(90,154,150,0.6); background: rgba(90,154,150,0.2); }
.comment-badge.tier-3 { color: #b8941f; border-color: rgba(184,148,31,0.6); background: rgba(184,148,31,0.2); }

/* Admin checkmark styling */
.admin-checkmark {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    color: #b0bec5;
    font-size: 0.9rem;
    font-weight: bold;
}

.admin-checkmark::before {
    content: "✓";
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-right: 4px;
    font-weight: bold;
}
.comment-badge.tier-4 { color: #b85c3a; border-color: rgba(184,92,58,0.6); background: rgba(184,92,58,0.2); }
.comment-badge.tier-5 { color: #8b5a96; border-color: rgba(139,90,150,0.6); background: rgba(139,90,150,0.2); }

/* Admin Settings Styles */
.admin-control select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #333;
    min-width: 200px;
}

/* Admin Dashboard Unsubscription Styles */
.recent-item.unsubscribed {
    border-left: 3px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.05);
}

.recent-item.unsubscribed .recent-name {
    color: #ff6b6b;
}

.recent-reason {
    font-size: 0.75rem;
    color: rgba(255, 107, 107, 0.8);
    font-style: italic;
    margin-left: 8px;
}

/* Message User Button Styles */
.recent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.message-user-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.message-user-btn:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.message-user-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.recent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(176, 190, 197, 0.1);
    transition: background-color 0.2s ease;
}

.recent-item:hover {
    background-color: rgba(176, 190, 197, 0.02);
}

/* Donation Button Styles - Enhanced Visibility */
.donate-btn {
    background: linear-gradient(135deg, #d45a2a, #c47a1a);
    color: white;
    border: 2px solid #d45a2a;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    background: linear-gradient(135deg, #c47a1a, #d45a2a);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: #c47a1a;
}

.donate-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.donate-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

.donate-text {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Button ordering - like button first, then donate button */
.post-actions button:not(.donate-btn) {
    order: 0; /* Like button first */
}

.post-actions .donate-btn {
    order: 1; /* Donate button second */
    flex-shrink: 0; /* Prevent shrinking */
}

/* Remove glow effects */
.post-actions .donate-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.post-actions .donate-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Donation Modal Styles */
.donation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.donation-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.donation-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
}

.donation-modal-header h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.donation-modal-close {
    background: none;
    border: none;
    color: #b0bec5;
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.donation-modal-close:hover {
    background: rgba(176, 190, 197, 0.1);
    color: #ffffff;
}

.donation-modal-body {
    padding: 24px;
}

.donation-amount-section,
.donation-message-section,
.payment-methods {
    margin-bottom: 24px;
}

.donation-amount-section h4,
.donation-message-section h4,
.payment-methods h4 {
    color: #ffffff;
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
}


.donation-message-section textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 8px;
    background: rgba(176, 190, 197, 0.1);
    color: #ffffff;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
}

.donation-message-section textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.donation-message-section textarea::placeholder {
    color: rgba(176, 190, 197, 0.6);
}

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

.payment-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 8px;
    background: rgba(176, 190, 197, 0.1);
    color: #b0bec5;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.payment-btn:hover {
    background: rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-btn.credit-card:hover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.payment-btn.venmo:hover {
    border-color: #3d95ce;
    background: rgba(61, 149, 206, 0.1);
}

.payment-btn.paypal:hover {
    border-color: #0070ba;
    background: rgba(0, 112, 186, 0.1);
}

.payment-icon {
    font-size: 1.2rem;
}

.payment-text {
    font-weight: 600;
}

/* Mobile responsive for donation modal */
@media (max-width: 768px) {
    .donation-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-options {
        gap: 8px;
    }
    
    .payment-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}

/* Thumbnail Preview Styles */
.thumbnail-preview {
    margin-top: 8px;
    max-width: 200px;
}

.thumbnail-preview-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(176, 190, 197, 0.3);
    object-fit: cover;
    max-height: 150px;
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(176, 190, 197, 0.7);
    font-style: italic;
}

/* Admin Post Controls */
.admin-post-controls {
    background: rgba(176, 190, 197, 0.05);
    border: 1px solid rgba(176, 190, 197, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.admin-post-controls .form-group {
    margin-bottom: 16px;
}

.admin-post-controls .form-group:last-child {
    margin-bottom: 0;
}

.admin-post-controls label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.admin-post-controls select,
.admin-post-controls input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 6px;
    background: rgba(176, 190, 197, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.admin-post-controls select:focus,
.admin-post-controls input[type="number"]:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.preview-settings {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(176, 190, 197, 0.2);
}

.preview-settings .form-group {
    margin-bottom: 12px;
}

.preview-settings .form-group:last-child {
    margin-bottom: 0;
}

.admin-control select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.preview-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.control-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.control-group input[type="number"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #333;
    width: 120px;
}

.control-group input[type="number"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* DM System Styles */
.user-message-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.message-btn, .dm-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.message-btn:hover, .dm-btn:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

.dm-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.dm-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-modal-content {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    height: 80%;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    background: rgba(176, 190, 197, 0.05);
}

.dm-header h3 {
    color: #b0bec5;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 300;
}

.dm-close-btn {
    background: none;
    border: none;
    color: #b0bec5;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dm-close-btn:hover {
    background: rgba(176, 190, 197, 0.1);
    color: #fff;
}

.dm-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.dm-conversations {
    width: 300px;
    border-right: 1px solid rgba(176, 190, 197, 0.2);
    background: rgba(176, 190, 197, 0.02);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* DM Search Styles */
.dm-search-container {
    padding: 1rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    background: rgba(176, 190, 197, 0.05);
    position: relative;
}

.dm-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.dm-search-input:focus {
    border-color: #b0bec5;
    box-shadow: 0 0 0 2px rgba(176, 190, 197, 0.2);
    background: white;
}

.dm-search-clear {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dm-search-clear:hover {
    background: rgba(176, 190, 197, 0.2);
    color: #1a1a1a;
}

#dmConversationsList {
    flex: 1;
    overflow-y: auto;
}

/* No results message */
.dm-no-results {
    padding: 2rem 1rem;
    text-align: center;
    color: rgba(176, 190, 197, 0.7);
}

.dm-no-results-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dm-no-results-icon {
    font-size: 2rem;
    opacity: 0.5;
}

.dm-no-results-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(176, 190, 197, 0.8);
}

.dm-no-results-subtext {
    font-size: 0.85rem;
    color: rgba(176, 190, 197, 0.6);
}

.dm-conversation-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.dm-conversation-item:hover {
    background: rgba(176, 190, 197, 0.05);
}

.dm-conversation-item.active {
    background: rgba(176, 190, 197, 0.1);
    border-left: 3px solid #b0bec5;
}

.dm-conversation-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.dm-conversation-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dm-conversation-avatar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.dm-conversation-info {
    flex: 1;
    min-width: 0;
}

.dm-conversation-name {
    color: #b0bec5;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dm-conversation-preview {
    color: rgba(176, 190, 197, 0.7);
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Unread indicators */
.dm-unread-indicator {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #ff4444;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 4px rgba(255, 68, 68, 0.5);
}

.dm-unread-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    z-index: 10;
}


.dm-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dm-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dm-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 70%;
}

.dm-message.own {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.dm-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.dm-message-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dm-message-avatar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 0.8rem;
    color: #1a1a1a;
}

.dm-message-content {
    background: rgba(176, 190, 197, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    color: #b0bec5;
    word-wrap: break-word;
}

.dm-message-image {
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dm-message-image:hover {
    transform: scale(1.02);
}

.dm-message-text {
    margin-top: 0.5rem;
    word-wrap: break-word;
}

.dm-message.own .dm-message-content {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
}

.dm-message-time {
    font-size: 0.7rem;
    color: rgba(176, 190, 197, 0.5);
    margin-top: 0.25rem;
    text-align: right;
}

.dm-message.own .dm-message-time {
    text-align: left;
}

.dm-input-area {
    padding: 1.5rem;
    border-top: 1px solid rgba(176, 190, 197, 0.2);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dm-image-btn {
    background: rgba(176, 190, 197, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b0bec5;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dm-image-btn:hover {
    background: rgba(176, 190, 197, 0.2);
    transform: scale(1.05);
}

.dm-message-input {
    flex: 1;
    background: rgba(176, 190, 197, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: #b0bec5;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.dm-message-input:focus {
    border-color: #b0bec5;
    background: rgba(176, 190, 197, 0.15);
}

.dm-image-preview {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(176, 190, 197, 0.2);
    background: rgba(176, 190, 197, 0.05);
}

.dm-image-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.dm-preview-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.dm-remove-btn, .dm-send-image-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dm-remove-btn {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.dm-remove-btn:hover {
    background: rgba(244, 67, 54, 0.2);
}

.dm-send-image-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: 1px solid rgba(176, 190, 197, 0.5);
}

.dm-send-image-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.image-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.dm-message-input::placeholder {
    color: rgba(176, 190, 197, 0.5);
}

.dm-send-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dm-send-btn:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-1px);
}

.dm-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Mobile responsiveness for DM modal */
@media (max-width: 768px) {
    .dm-modal-content {
        width: 95%;
        height: 90%;
    }
    
    .dm-conversations {
        width: 250px;
    }
    
    .dm-search-container {
        padding: 0.75rem;
    }
    
    .dm-search-input {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .dm-message {
        max-width: 85%;
    }
}

/* DM Premium Overlay Styles */
.dm-premium-overlay {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dm-premium-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.dm-premium-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95));
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(176, 190, 197, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 16px 64px rgba(176, 190, 197, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.dm-premium-overlay.show .dm-premium-content {
    transform: scale(1);
}

.dm-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    background: linear-gradient(90deg, rgba(176, 190, 197, 0.05), rgba(144, 164, 174, 0.02));
    position: relative;
}

.dm-premium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176, 190, 197, 0.5), transparent);
}

.dm-premium-header h3 {
    color: linear-gradient(45deg, #b0bec5, #90a4ae);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.dm-premium-close-btn {
    background: rgba(176, 190, 197, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    color: linear-gradient(45deg, #b0bec5, #90a4ae);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dm-premium-close-btn:hover {
    background: rgba(176, 190, 197, 0.2);
    color: #ffffff;
    border-color: rgba(176, 190, 197, 0.5);
    box-shadow: 0 0 15px rgba(176, 190, 197, 0.3);
}

.dm-premium-body {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dm-premium-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.2), rgba(150, 200, 255, 0.1));
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: linear-gradient(45deg, #b0bec5, #90a4ae);
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(176, 190, 197, 0.2);
}

.dm-premium-body h4 {
    color: linear-gradient(45deg, #b0bec5, #90a4ae);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.dm-premium-body p {
    color: #b0bec5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 400px;
}

.dm-premium-benefits {
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.05), rgba(144, 164, 174, 0.02));
    border: 1px solid rgba(176, 190, 197, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 0 2rem 0;
    width: 100%;
    max-width: 350px;
    box-shadow: inset 0 1px 0 rgba(176, 190, 197, 0.1);
}

.dm-premium-benefits p {
    color: #b0bec5;
    font-size: 1rem;
    margin: 0.5rem 0;
    text-align: left;
}

.dm-premium-upgrade-btn {
    background: linear-gradient(135deg, #b0bec5, #90a4ae);
    color: #ffffff;
    border: 1px solid rgba(176, 190, 197, 0.5);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
    min-width: 200px;
}

.dm-premium-upgrade-btn:hover {
    background: linear-gradient(135deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(176, 190, 197, 0.5);
    border-color: rgba(176, 190, 197, 0.7);
}

/* Mobile responsiveness for premium overlay */
@media (max-width: 768px) {
    .dm-premium-content {
        width: 95%;
        margin: 1rem;
    }
    
    .dm-premium-header {
        padding: 1rem 1.5rem;
    }
    
    .dm-premium-body {
        padding: 1.5rem;
    }
    
    .dm-premium-icon {
        font-size: 3rem;
    }
    
    .dm-premium-body h4 {
        font-size: 1.5rem;
    }
    
    .dm-premium-body p {
        font-size: 1rem;
    }
}

/* Comment Premium Overlay Styles */
.comment-premium-overlay {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comment-premium-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.comment-premium-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(25, 25, 25, 0.95));
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(176, 190, 197, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 16px 64px rgba(176, 190, 197, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.comment-premium-overlay.show .comment-premium-content {
    transform: scale(1);
}

.comment-premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    background: linear-gradient(90deg, rgba(176, 190, 197, 0.05), rgba(144, 164, 174, 0.02));
    position: relative;
}

.comment-premium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(176, 190, 197, 0.5), transparent);
}

.comment-premium-header h3 {
    color: #b0bec5;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.comment-premium-close-btn {
    background: rgba(176, 190, 197, 0.1);
    border: 1px solid rgba(176, 190, 197, 0.3);
    color: #b0bec5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.comment-premium-close-btn:hover {
    background: rgba(176, 190, 197, 0.2);
    color: #ffffff;
    border-color: rgba(176, 190, 197, 0.5);
    box-shadow: 0 0 15px rgba(176, 190, 197, 0.3);
}

.comment-premium-body {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comment-premium-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.2), rgba(150, 200, 255, 0.1));
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0bec5;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(176, 190, 197, 0.2);
}

.comment-premium-body h4 {
    color: #b0bec5;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-shadow: 0 0 10px rgba(176, 190, 197, 0.3);
}

.comment-premium-body p {
    color: #b0bec5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 400px;
}

.comment-premium-benefits {
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.05), rgba(144, 164, 174, 0.02));
    border: 1px solid rgba(176, 190, 197, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 0 2rem 0;
    width: 100%;
    max-width: 350px;
    box-shadow: inset 0 1px 0 rgba(176, 190, 197, 0.1);
}

.comment-premium-benefits p {
    color: #b0bec5;
    font-size: 1rem;
    margin: 0.5rem 0;
    text-align: left;
}

.comment-premium-upgrade-btn {
    background: linear-gradient(135deg, #b0bec5, #90a4ae);
    color: #ffffff;
    border: 1px solid rgba(176, 190, 197, 0.5);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.3);
    min-width: 200px;
}

.comment-premium-upgrade-btn:hover {
    background: linear-gradient(135deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(176, 190, 197, 0.5);
    border-color: rgba(176, 190, 197, 0.7);
}

/* Mobile responsiveness for comment premium overlay */
@media (max-width: 768px) {
    .comment-premium-content {
        width: 95%;
        margin: 1rem;
    }
    
    .comment-premium-header {
        padding: 1rem 1.5rem;
    }
    
    .comment-premium-body {
        padding: 1.5rem;
    }
    
    .comment-premium-icon {
        font-size: 3rem;
    }
    
    .comment-premium-body h4 {
        font-size: 1.5rem;
    }
    
    .comment-premium-body p {
        font-size: 1rem;
    }
}

/* Admin Dashboard Styles */
.admin-dashboard-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: #1a1a1a;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.admin-dashboard-btn:hover {
    background: linear-gradient(45deg, #90a4ae, #b0bec5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 190, 197, 0.4);
}

.admin-dashboard-modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-dashboard-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.admin-dashboard-content {
    background: rgba(26, 26, 26, 0.98);
    border: 2px solid rgba(176, 190, 197, 0.4);
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    height: 90%;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.admin-dashboard-modal.show .admin-dashboard-content {
    transform: scale(1);
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    background: rgba(176, 190, 197, 0.05);
}

.admin-dashboard-header h3 {
    color: #b0bec5;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 500;
}

.admin-dashboard-close-btn {
    background: none;
    border: none;
    color: #b0bec5;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.admin-dashboard-close-btn:hover {
    background: rgba(176, 190, 197, 0.1);
    color: #fff;
}

.admin-dashboard-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.admin-dashboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #b0bec5;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(176, 190, 197, 0.2);
    border-top: 4px solid #b0bec5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Unified Dashboard Layout */
.unified-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-hero {
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.1), rgba(144, 164, 174, 0.05));
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(176, 190, 197, 0.2);
}

.hero-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b0bec5;
    margin-bottom: 0.5rem;
}

.hero-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(176, 190, 197, 0.1);
    border-color: rgba(176, 190, 197, 0.5);
}

.content-card.full-width {
    grid-column: 1 / -1;
}

.content-card h3 {
    color: #b0bec5;
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    padding-bottom: 0.5rem;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(176, 190, 197, 0.2);
}

.breakdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.breakdown-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b0bec5;
}

.analysis-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.analysis-section h4 {
    color: #b0bec5;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    border-bottom: 2px solid rgba(176, 190, 197, 0.2);
    padding-bottom: 0.75rem;
}

.tier-grid, .revenue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.tier-card, .revenue-card {
    background: linear-gradient(135deg, rgba(176, 190, 197, 0.1), rgba(144, 164, 174, 0.05));
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card:hover, .revenue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(176, 190, 197, 0.2);
    border-color: rgba(176, 190, 197, 0.5);
}

.tier-card::before, .revenue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b0bec5, #90a4ae);
}

.tier-header, .revenue-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tier-name, .revenue-tier {
    color: #b0bec5;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-count, .revenue-amount {
    color: #b0bec5;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
}

.tier-label, .revenue-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
}

.activity-tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.activity-tab.active {
    background: rgba(176, 190, 197, 0.1);
    color: #b0bec5;
    border-bottom: 2px solid #b0bec5;
}

.activity-tab:hover {
    background: rgba(176, 190, 197, 0.05);
    color: #b0bec5;
}

.activity-tab-content {
    display: none;
}

.activity-tab-content.active {
    display: block;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    border-left: 3px solid #b0bec5;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(4px);
}

.activity-item.unsubscribed {
    border-left-color: rgba(255, 255, 255, 0.3);
}

.activity-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.activity-name {
    color: #b0bec5;
    font-weight: 500;
}

.activity-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.activity-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.activity-date {
    color: #b0bec5;
    font-size: 0.85rem;
    font-weight: 500;
}

.activity-btn {
    background: rgba(176, 190, 197, 0.1);
    color: #b0bec5;
    border: 1px solid rgba(176, 190, 197, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.activity-btn:hover {
    background: rgba(176, 190, 197, 0.2);
    border-color: #b0bec5;
    color: #fff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-section {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.dashboard-section h4 {
    color: #b0bec5;
    margin: 0 0 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    padding-bottom: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(176, 190, 197, 0.4);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.2);
}

.stat-card.premium {
    border-color: rgba(176, 190, 197, 0.5);
    background: rgba(176, 190, 197, 0.05);
}

.stat-card.free {
    border-color: rgba(176, 190, 197, 0.5);
    background: rgba(176, 190, 197, 0.05);
}

.stat-card.revenue {
    border-color: rgba(176, 190, 197, 0.5);
    background: rgba(176, 190, 197, 0.05);
}

.stat-card.active {
    border-color: rgba(176, 190, 197, 0.5);
    background: rgba(176, 190, 197, 0.05);
}

.stat-card.canceled {
    border-color: rgba(176, 190, 197, 0.5);
    background: rgba(176, 190, 197, 0.05);
}

.stat-card.expired {
    border-color: rgba(176, 190, 197, 0.5);
    background: rgba(176, 190, 197, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #b0bec5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 6px;
    border-left: 3px solid #b0bec5;
}

.tier-name {
    color: #b0bec5;
    font-weight: 500;
}

.tier-count {
    color: #b0bec5;
    font-weight: 600;
}

.revenue-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 6px;
    border-left: 3px solid #b0bec5;
}

.revenue-tier {
    color: #b0bec5;
    font-weight: 500;
}

.revenue-amount {
    color: #b0bec5;
    font-weight: 600;
    font-size: 1.1rem;
}

.recent-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
}

.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 6px;
    border-left: 3px solid #b0bec5;
}

.recent-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.recent-name {
    color: #b0bec5;
    font-weight: 500;
}

.recent-tier, .recent-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.recent-date {
    color: #b0bec5;
    font-size: 0.85rem;
    font-weight: 500;
}

.no-data {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* Mobile responsiveness for admin dashboard */
@media (max-width: 768px) {
    .admin-dashboard-content {
        width: 98%;
        height: 95%;
        margin: 1rem;
    }
    
    .admin-dashboard-header {
        padding: 1rem 1.5rem;
    }
    
    .admin-dashboard-body {
        padding: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

.tier-badge.featured {
    background: linear-gradient(45deg, #b0bec5, #90a4ae) !important;
    color: #1a1a1a !important;
    border: 2px solid rgba(176, 190, 197, 0.8) !important;
    box-shadow: 0 4px 15px rgba(176, 190, 197, 0.4) !important;
}

/* Universal tier button styling */
.tier-button {
    width: 100% !important;
    padding: 1rem 2rem !important;
    margin-top: 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 2px solid transparent !important;
}

.tier-button.featured {
    background: linear-gradient(45deg, #b0bec5, #90a4ae) !important;
    color: #1a1a1a !important;
    border: 2px solid rgba(176, 190, 197, 0.8) !important;
    box-shadow: 0 4px 20px rgba(176, 190, 197, 0.4) !important;
}

.tier-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(176, 190, 197, 0.4) !important;
}

.tier-button.featured:hover {
    box-shadow: 0 12px 35px rgba(176, 190, 197, 0.6) !important;
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

/* Patron Selection Modal Styles - Match Auth Modal */
.patron-selection-modal {
    max-width: 400px;
    width: 90%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 190, 197, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.patron-selection-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 0 30px;
    border-bottom: 1px solid rgba(176, 190, 197, 0.2);
    margin-bottom: 20px;
}

.patron-selection-modal .modal-header h2 {
    color: #b0bec5;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.patron-selection-modal .modal-close {
    color: #b0bec5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.patron-selection-modal .modal-close:hover {
    color: #90a4ae;
}

.patron-selection-modal .modal-body {
    padding: 0 30px 30px 30px;
}

.patron-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}

.patron-option-btn {
    background: transparent;
    border: 2px solid rgba(176, 190, 197, 0.3);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    color: #b0bec5;
    font-family: 'Raleway', sans-serif;
}

.patron-option-btn:hover {
    background: rgba(176, 190, 197, 0.1);
    border-color: rgba(176, 190, 197, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.option-content h3 {
    color: #b0bec5;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 5px 0;
    font-family: 'Raleway', sans-serif;
}

.option-content p {
    color: #90a4ae;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Mobile responsiveness for patron modal */
@media (max-width: 768px) {
    .patron-selection-modal {
        width: 95%;
        margin: 20px;
    }
    
    .patron-option-btn {
        padding: 20px;
    }
    
    .option-content h3 {
        font-size: 1.2rem;
    }
    
    .option-content p {
        font-size: 0.9rem;
    }
}