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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%),
                url('https://images.unsplash.com/photo-1492619375914-88005aa9e8fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 20% 15%,
                url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 85% 25%,
                url('https://images.unsplash.com/photo-1598300042247-d088f8ab3a91?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 10% 60%,
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 75% 70%,
                url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 45% 80%,
                url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 90% 90%,
                url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat 5% 35%;
    background-size: cover, 25% auto, 22% auto, 20% auto, 18% auto, 23% auto, 19% auto, 21% auto;
    background-attachment: fixed;
    background-blend-mode: overlay, normal, normal, normal, normal, normal, normal, normal;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.02) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Slider */
.hero-slider {
    margin-top: 80px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.2rem;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.nav-dot.active {
    background: white;
}

/* News Ticker */
.news-ticker {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 50%, #9b2c2c 100%);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-ticker:hover {
    background: linear-gradient(135deg, #c53030 0%, #9b2c2c 50%, #742a2a 100%);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    transform: translateY(1px);
}

.news-ticker:hover .ticker-content {
    animation-play-state: paused;
}

.ticker-content {
    display: inline-block;
    animation: scroll 60s linear infinite;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

@keyframes scroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

.ticker-label {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 6px 16px;
    margin-right: 24px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.ticker-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.ticker-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    margin: 0 16px;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    position: relative;
}

.ticker-category:nth-of-type(2) {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.ticker-category:nth-of-type(3) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.ticker-category:nth-of-type(4) {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
}

.ticker-category:nth-of-type(5) {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 2px 6px rgba(6, 182, 212, 0.3);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 50px;
}

section {
    margin: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    height: auto;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.8) 100%
    );
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0;
    font-weight: 400;
}

/* Gallery responsive adjustments */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 1fr);
    }
    
    .gallery-item {
        height: 200px;
    }
}

/* Events */
.events-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.event-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    height: 150px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.event-date .day-name {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
    order: 1;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    order: 2;
}

.event-date .date-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    order: 3;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.event-date .year {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    line-height: 1;
}

.event-info {
    padding: 1.5rem;
}

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

.event-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-time {
    color: #667eea;
    font-weight: bold;
}

/* Blog Stories Highlights */
#blog-highlights {
    background: linear-gradient(135deg, #c7b299 0%, #a89b8c 50%, #8b7d6b 100%);
    margin: 4rem -100vw;
    padding: 4rem 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

#blog-highlights h2 {
    color: #2c2c2c;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: justify;
}

/* Sports Section */
.sports-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.sports-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.sports-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.sports-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.sports-card:hover .sports-image img {
    transform: scale(1.08);
}

.sports-content {
    padding: 1.5rem;
}

.sports-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.sports-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    line-height: 1.4;
    font-weight: 600;
}

.sports-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.sports-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.sports-date {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.sports-time {
    color: #999;
    font-size: 0.85rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-header {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 0.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-1px);
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: #667eea;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #667eea;
    text-decoration: underline;
}

.contact-text {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    font-weight: 500;
}

.social-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link span {
    display: none;
}

.about-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.quick-link:hover {
    color: #667eea;
    border-left-color: #667eea;
    padding-left: 0.8rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
    }
    
    .quick-links {
        align-items: center;
    }
    
    .quick-link {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-left: 0;
        padding-bottom: 0.3rem;
        text-align: center;
    }
    
    .quick-link:hover {
        border-left: none;
        border-bottom-color: #667eea;
        padding-left: 0;
        padding-bottom: 0.3rem;
    }
}

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

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: white;
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.social-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Individual Social Media Colors */
.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
    border-color: #e4405f;
}

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

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
    border-color: #0077b5;
}

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

.social-link.discord:hover {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border-color: #5865f2;
}

.social-link.telegram:hover {
    background: linear-gradient(135deg, #0088cc, #006699);
    border-color: #0088cc;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: #25d366;
}

/* Responsive Social Links */
@media (max-width: 768px) {
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .social-link span {
        display: none;
    }
}

@media (max-width: 480px) {
    .social-link {
        padding: 0.5rem;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .events-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sports-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .events-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sports-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .events-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .sports-container {
        grid-template-columns: 1fr;
    }
}