/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Ensure smooth scrolling for all anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Collaboration Banner */
.collaboration-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: white;
    z-index: 1001;
    padding: 10px 0;
    text-align: center;
    transform: translateY(-100%);
}

.collaboration-banner.show {
    transform: translateY(0);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.15s ease;
}

.banner-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #7c3aed;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-link:hover {
    color: #fbbf24;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #7c3aed;
    margin: 3px 0;
    transition: 0.2s;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #3d2680 0%, #5b34b5 50%, #7c3aed 100%);
}

/* Hero Text Section */
.hero-text-section {
    position: relative;
    z-index: 2;
    padding: 6rem 0 3rem;
    color: white;
}

/* Hero Slideshow Section */
.hero-slideshow-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

/* Hero Overlay - no longer needed but keep for compatibility */
.hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    color: #e8f0fe;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-graphic {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(139, 92, 246, 0.7);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-graphic i {
    font-size: 4rem;
    color: white;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}




/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 3;
    pointer-events: none;
    box-sizing: border-box;
}

.prev-btn, .next-btn {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    padding: 14px 16px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.prev-btn:hover, .next-btn:hover {
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease;
}

.dot.active {
    background: #fbbf24;
}

.dot:hover {
    background: rgba(251, 191, 36, 0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 20px;
    margin-top: 2rem;
    background: transparent;
    flex-wrap: nowrap;
    width: 100%;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 600;
    color: #ffffff;
}

.stat-item.clickable {
    cursor: pointer;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid transparent;
}

.stat-item.clickable:hover {
    padding: 1rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7c3aed, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #4b5563;
    font-weight: 500;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-6px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1.5px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(251, 191, 36, 0.05));
    transition: top 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
}

.service-card:hover::before {
    top: 0;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Contact Card Base */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.contact-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-card__body {
    flex: 1;
    min-width: 0;
}

.contact-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: white;
}

.contact-card__body p {
    font-size: 0.85rem;
    opacity: 0.85;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-card__arrow {
    font-size: 0.9rem;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.contact-card:hover .contact-card__arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Brand Colors */
.contact-card--facebook {
    background: linear-gradient(135deg, #1877F2, #0d65d9);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
}
.contact-card--twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    box-shadow: 0 8px 24px rgba(29, 161, 242, 0.35);
}
.contact-card--instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.35);
}
.contact-card--youtube {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}
.contact-card--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.contact-card--email {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

/* Keep old .contact-item for compatibility */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.8rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-item:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #3d2680, #2d1b69);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.social-links a:hover {
    background: #fbbf24;
    color: #2d1b69;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    color: #94a3b8;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #3d2680 0%, #5b34b5 50%, #7c3aed 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #fbbf24;
    }

    .hero-slideshow-section {
        height: 300px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .slideshow-controls {
        padding: 0 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        padding: 5rem 0 2rem;
    }

    .hero-slideshow-section {
        height: 250px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-graphic {
        width: 150px;
        height: 150px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 1rem 1rem;
    }

    .stat-item {
        width: 180px;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

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

    .about-stats {
        flex-direction: column;
    }

    .slideshow-controls {
        padding: 0 0.5rem;
    }

    .prev-btn, .next-btn {
        padding: 10px 12px;
        font-size: 1.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card__body p {
        white-space: normal;
    }
}

/* Smooth scrolling and animations */
.fade-in {
    opacity: 1;
}

.fade-in.visible {
    opacity: 1;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Media Links */
.social-media {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-media h3 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: box-shadow 0.2s ease;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.twitter { background: #1da1f2; }
.social-link.youtube { background: #ff0000; }
.social-link.whatsapp { background: #25d366; }

.social-link:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Membership Section */
.membership {
    background: #f8fafc;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.membership-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.8rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.benefit:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.benefit i {
    color: #7c3aed;
    font-size: 1.8rem;
    margin-top: 0.25rem;
}

.benefit h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

.membership-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.membership-form h3 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.membership-form p {
    color: #666;
    margin-bottom: 2rem;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* News Section */
.news {
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.news-card:hover {
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.2);
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
}

.news-card.featured {
    grid-row: span 2;
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-placeholder {
    color: white;
    font-size: 3rem;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    background: #7c3aed;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.news-card.featured .news-content h3 {
    font-size: 1.5rem;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

/* Merchandise Section */
.merch {
    background: #f8fafc;
}

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

.merch-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.merch-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.merch-image {
    height: 200px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.merch-placeholder {
    color: white;
    font-size: 3rem;
}

.merch-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.merch-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.merch-content {
    padding: 1.5rem;
    text-align: center;
}

.merch-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.merch-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog {
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: #7c3aed;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

/* Exclusive Content Section */
.exclusive {
    background: #f8fafc;
}

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

.tab-btn {
    padding: 12px 28px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #666;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-color: #7c3aed;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

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

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

.content-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.content-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.content-placeholder {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.content-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.wallpaper-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wallpaper-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wallpaper-photo:hover {
    transform: scale(1.05);
}

/* Support Staff Section */
.support-staff {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 5rem 0;
}

.support-staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.staff-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    padding: 0;
    text-align: center;
}


.staff-card:hover {
    border-color: #7c3aed;
}

.staff-photo {
    width: 100%;
    height: 220px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: none;
}

.staff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.staff-info {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.staff-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.staff-card:hover .staff-info h3 {
    color: #7c3aed;
}

.staff-role {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

/* Support Staff Responsive */
@media (max-width: 768px) {
    .support-staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .staff-card {
        padding: 0;
    }
    
    .staff-photo {
        width: 100%;
        height: 180px;
        margin-bottom: 0;
    }
    
    .staff-info h3 {
        font-size: 1rem;
    }
    
    .staff-role {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .support-staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Match Results Section */
.match-results {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 5rem 0;
}

.match-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.match-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.match-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #7c3aed;
}

.match-card.recent {
    border-color: #10b981;
    background: linear-gradient(135deg, #ffffff, #f0fdf4);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.team-logo {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.1);
}

.vs {
    font-weight: 700;
    color: #fbbf24;
    font-size: 1.1rem;
}

.match-result {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-result.won {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.match-result.lost {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.match-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.match-details p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.match-score {
    font-weight: 600;
    color: #374151 !important;
}

.match-mom {
    color: #7c3aed !important;
    font-weight: 500;
}

/* Modern Visual Enhancements */
.section-header h2 {
    background: linear-gradient(135deg, #7c3aed, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styles - Simplified */

/* Performance Optimizations - Simplified */
.player-photo,
.team-logo,
.hero-logo,
.wallpaper-photo,
.staff-image,
.blog-photo {
    image-rendering: auto;
}

/* Accessibility Improvements */
*:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #7c3aed;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 5rem 0;
    min-height: 100vh;
}

.article-category-section {
    margin-bottom: 4rem;
}

.article-category-section:last-child {
    margin-bottom: 0;
}

.article-category-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #7c3aed;
    position: relative;
}

.article-category-heading::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #fbbf24);
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}


.blog-card:hover {
    border-color: #7c3aed;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.blog-image img {
    min-width: 100%;
    min-height: 100%;
}

.blog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 10px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c3aed;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #7c3aed;
}

.blog-excerpt {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.blog-author {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-read-more {
    color: #7c3aed;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: #fbbf24;
    transform: translateX(5px);
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(3px);
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .blog {
        padding: 3rem 0;
    }
    
    .article-category-section {
        margin-bottom: 3rem;
    }
    
    .article-category-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 3rem 0;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .date-day {
        font-size: 1.2rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .collaboration-banner {
        padding: 8px 0;
    }
    
    .banner-text {
        font-size: 0.8rem;
    }
    
    .membership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-row: span 1;
    }
    
    .exclusive-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 200px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-text {
        font-size: 0.75rem;
    }
    
    .merch-grid,
    .blog-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team {
    background: white;
}

/* Squad Tabs */
.squad-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.squad-tab-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.squad-tab-btn:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: #7c3aed;
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.05);
}

.squad-tab-btn.active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-color: #7c3aed;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.squad-section {
    display: none;
}

.squad-section.active {
    display: block;
}

.empty-squad-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 20px;
    border: 2px dashed #e5e7eb;
}

.empty-squad-message i {
    font-size: 4rem;
    color: #7c3aed;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-squad-message h3 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-squad-message p {
    color: #6b7280;
    font-size: 1rem;
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #666;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-color: #7c3aed;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.player-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1.5px solid rgba(139, 92, 246, 0.1);
    position: relative;
}

.player-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.2);
    transform: translateY(-8px);
}

.player-image {
    position: relative;
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.player-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
}

.badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    color: white;
    overflow: hidden;
}

.badge.captain {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.badge.overseas {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.badge.wicketkeeper {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.player-info {
    padding: 1.2rem;
    text-align: center;
}

.player-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.player-role {
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Enhanced Hero Section */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9, #a855f7);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: white;
    border: 2px solid rgba(251, 191, 36, 0.6);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3));
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transform: translateY(-3px);
}

.player-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.player-role {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.player-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.player-role {
    color: #7c3aed;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.team-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-stat:hover {
    transform: translateY(-5px);
    border-color: #7c3aed;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.team-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.team-stat p {
    color: #666;
    font-weight: 500;
}

/* Player card filtering */
.player-card.hidden {
    display: none;
}

/* Responsive updates for team section */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .team-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .team-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .squad-tabs {
        gap: 0.5rem;
    }
    
    .squad-tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .empty-squad-message {
        padding: 3rem 1.5rem;
    }
    
    .empty-squad-message i {
        font-size: 3rem;
    }
    
    .empty-squad-message h3 {
        font-size: 1.3rem;
    }
}

/* Championship Modal */
.championship-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #fbbf24;
    transform: scale(1.1);
}

.modal-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.modal-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.modal-body {
    padding: 2rem;
    background: white;
    border-radius: 0 0 20px 20px;
}

.championship-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-details {
    text-align: center;
}

.modal-details h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.modal-details p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .championship-photo {
        height: 250px;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
    
    .hero-graphic {
        width: 250px;
        height: 250px;
    }
    
    .match-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .match-card {
        padding: 1.5rem;
    }
    
    .match-teams {
        gap: 0.5rem;
    }
    
    .team-logo {
        width: 20px;
        height: 20px;
    }
    
    /* Enhanced mobile touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .player-card {
        animation-delay: calc(var(--index) * 0.1s);
    }
    
    /* Improved mobile scrolling */
    .team-grid {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better mobile typography */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* iOS and Safari specific optimizations */
@supports (-webkit-touch-callout: none) {
    .hero-slideshow {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .player-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .btn {
        -webkit-tap-highlight-color: transparent;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-logo,
    .team-logo,
    .player-photo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e0a47;
}

/* Loading Overlay */

.loading-spinner p {
    color: #7c3aed;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Image Loading Optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-logo {
        animation: none;
    }
    
    .player-card {
        animation: none;
    }
    
    .spinner {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .collaboration-banner,
    .slideshow-controls,
    .slideshow-dots,
    .scroll-to-top,
    .loading-overlay,
    .btn,
    .hamburger,
    .team-filters,
    .squad-tabs {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-header h2 {
        -webkit-text-fill-color: black;
        background: none;
        color: black;
    }
    
    .player-card,
    .blog-card,
    .staff-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Additional Performance Optimizations */
.container {
    contain: layout style;
}

.team-grid,
.blog-grid,
.support-staff-grid,
.match-results-grid {
    contain: layout;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: no-preference) {
    .player-card,
    .blog-card,
    .staff-card,
    .match-card {
        will-change: transform;
    }
}

/* Content Security */
img {
    content-visibility: auto;
}

/* Better text rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Better focus states for keyboard navigation */
.nav-link:focus,
.filter-btn:focus,
.squad-tab-btn:focus,
.btn:focus {
    outline: 3px solid #7c3aed;
    outline-offset: 3px;
    border-radius: 5px;
}

/* Smooth image loading */
img {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    min-height: 100px;
    }
    
    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 30px;
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 1rem;
    }
    
    .championship-photo {
        height: 200px;
    }
    
    .modal-details h3 {
        font-size: 1.5rem;
    }
    
    .modal-details p {
        font-size: 1rem;
    }
}

/* ===== LIGHT PURPLE & GOLD THEME ===== */

/* Body & Global */
body {
    background: #f5f0ff;
    color: #2d1b4e;
}

/* Section backgrounds */
.about,
.team,
.membership,
.blog,
.contact,
.contact-section,
.support-staff,
.match-results,
.exclusive,
.merch,
.news {
    background: #f5f0ff;
}

.page-hero {
    background: linear-gradient(135deg, #ede5fb 0%, #f5f0ff 100%);
    padding: 5rem 0;
}

/* Section header text */
.section-header p {
    color: #5b4a7a;
}

.section-header h1 {
    background: linear-gradient(135deg, #7c3aed, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 800;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
}

.nav-logo h2 {
    color: #7c3aed;
}

.nav-link {
    color: #3d2563;
}

.nav-link:hover,
.nav-link.active {
    color: #7c3aed;
}

/* Mobile nav menu */
@media (max-width: 768px) {
    .nav-menu {
        background-color: #ffffff;
    }
}

/* Cards - Player, Blog, Staff, etc. */
.player-card {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.player-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
}

.player-image {
    background: #ede5fb;
}

.player-info h3 {
    color: #2d1b4e;
}

.player-role {
    color: #7c3aed;
}

/* Blog cards */
.blog-card {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.blog-card:hover {
    border-color: #7c3aed;
}

.blog-title {
    color: #2d1b4e;
}

.blog-card:hover .blog-title {
    color: #7c3aed;
}

.blog-excerpt {
    color: #5b4a7a;
}

.blog-author {
    color: #7c6a9a;
}

.blog-footer {
    border-top-color: rgba(124, 58, 237, 0.1);
}

.blog-date {
    background: #7c3aed;
}

.date-day {
    color: #ffffff;
}

.date-month {
    color: #e2d9f3;
}

.blog-content h3 {
    color: #2d1b4e;
}

.blog-content p {
    color: #5b4a7a;
}

/* Article category heading */
.article-category-heading {
    color: #7c3aed;
}

/* Staff cards */
.staff-card {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.staff-card:hover {
    border-color: #7c3aed;
}

.staff-info h3 {
    color: #2d1b4e;
}

.staff-card:hover .staff-info h3 {
    color: #7c3aed;
}

.staff-role {
    color: #5b4a7a;
}

/* About page */
.about-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.about-section h2 {
    color: #7c3aed;
}

.about-section p {
    color: #3d2563;
}

.about-text h3 {
    color: #7c3aed;
}

.about-text p {
    color: #5b4a7a;
}

.about-list {
    color: #3d2563;
}

.about-list li {
    margin-bottom: 0.5rem;
}

.about-list strong {
    color: #7c3aed;
}

/* Value cards (About page) */
.value-card {
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.12);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.value-card:hover {
    border-color: #7c3aed;
    transform: translateY(-5px);
}

.value-card i {
    color: #7c3aed;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #2d1b4e;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #5b4a7a;
}

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

/* Stat cards */
.stat {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.stat h3 {
    color: #7c3aed;
}

.stat p {
    color: #5b4a7a;
}

.team-stat {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.team-stat:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.team-stat p {
    color: #5b4a7a;
}

/* Membership */
.benefit {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.benefit:hover {
    border-color: #7c3aed;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.12);
}

.benefit h4 {
    color: #2d1b4e;
}

.benefit p {
    color: #5b4a7a;
}

.membership-form {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.membership-form p {
    color: #5b4a7a;
}

.form-note {
    color: #7c6a9a;
}

.membership-info h3 {
    color: #7c3aed;
}

/* Contact */
.contact-item {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.contact-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.12);
}

.contact-item h3,
.contact-item h4 {
    color: #2d1b4e;
}

.contact-item p {
    color: #5b4a7a;
}

.contact-item p a {
    color: #7c3aed;
    transition: color 0.2s ease;
}

.contact-item p a:hover {
    color: #6d28d9;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.contact-form-wrapper h2 {
    color: #7c3aed;
}

.contact-info h2 {
    color: #7c3aed;
}

/* Filter & Tab buttons */
.filter-btn {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.2);
    color: #5b4a7a;
}

.squad-tab-btn {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.2);
    color: #5b4a7a;
}

.squad-tab-btn:hover {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

.tab-btn {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.2);
    color: #5b4a7a;
}

/* Empty squad message */
.empty-squad-message {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
}

.empty-squad-message h3 {
    color: #2d1b4e;
}

.empty-squad-message p {
    color: #5b4a7a;
}

/* Social media section */
.social-media {
    background: #ffffff;
}

.social-media h3 {
    color: #7c3aed;
}

/* Match cards */
.match-card {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.match-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
}

.match-card.recent {
    border-color: #10b981;
    background: #ffffff;
}

.match-header {
    border-bottom-color: rgba(124, 58, 237, 0.1);
}

.team {
    color: #2d1b4e;
}

.match-details p {
    color: #5b4a7a;
}

.match-score {
    color: #2d1b4e !important;
}

/* News cards */
.news-card {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.news-content h3 {
    color: #2d1b4e;
}

.news-content p {
    color: #5b4a7a;
}

/* Merch */
.merch-item {
    background: #ffffff;
}

.merch-content h3 {
    color: #2d1b4e;
}

.merch-description {
    color: #5b4a7a;
}

/* Content items */
.content-item {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
}

.content-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.12);
}

.content-item h4 {
    color: #2d1b4e;
}

/* Modal body */
.modal-body {
    background: #ffffff;
}

.modal-details h3 {
    color: #7c3aed;
}

.modal-details p {
    color: #3d2563;
}

/* Collaboration Banner */
.collaboration-banner {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
}

/* Feature/Service text */
.feature span {
    color: #3d2563;
}

.service-card {
    background: #ffffff;
}

.service-card h3 {
    color: #2d1b4e;
}

.service-card p {
    color: #5b4a7a;
}

/* Support staff section */
.support-staff {
    background: #f5f0ff;
}

/* Blog section override */
.blog {
    background: #f5f0ff;
}

/* Img loading backgrounds */
img {
    background: linear-gradient(135deg, #ede5fb, #f5f0ff);
}

/* Print override - keep white for print */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .about-section,
    .player-card,
    .blog-card,
    .staff-card,
    .benefit,
    .contact-item,
    .team-stat,
    .value-card,
    .membership-form,
    .contact-form-wrapper {
        background: white;
        color: black;
    }
}
