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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    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;
}

.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%;
}

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

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

/* 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;
}

/* Desktop styles */
@media (min-width: 769px) {
    .hero-video {
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
    }
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        transform: none;
    }
}

.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: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(176, 190, 197, 0.8);
    letter-spacing: 2px;
}

.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;
}

/* Update mobile logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    
    .hero-logo {
        height: 120px; /* Increased from 80px */
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
    
    .hero-logo {
        height: 100px; /* Increased from 60px */
    }
}


.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 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);
}
/* 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: 60px 20px;
    text-align: center;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.merch-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 190, 197, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.merch-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(176, 190, 197, 0.3);
    border-color: #b0bec5;
}

.merch-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 15px 15px 0 0;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from 'cover' to 'contain' */
    transition: transform 0.3s ease;
}

.merch-item:hover .merch-image img {
    transform: scale(1.05);
}

.merch-info {
    padding: 1.5rem;
    text-align: center;
    background: transparent; /* Remove background since parent already has it */
}

.merch-info h3 {
    font-size: 1.2rem;
    color: #b0bec5;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.merch-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.merch-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.merch-btn {
    background: linear-gradient(45deg, #b0bec5, #90a4ae);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* 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);
}

/* 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: 2.5rem;
    }

    .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;
    }
}

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

    .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: 40px;
    width: auto;
    object-fit: contain;
}

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

@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }
    
    .hero-logo {
        height: 150px;
    }
    
    /* Make CTA button smaller on mobile */
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
    }
    
    .hero-logo {
        height: 130px;
    }
    
    /* Make CTA button even smaller on small mobile */
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
.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);
}

/* 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;
}