/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(139, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Normale Höhe */
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

/* Live Stream Indicator in Hero */
.live-indicator {
    display: flex; /* Immer sichtbar */
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 10px 20px;
    border-radius: 30px;
    animation: livePulse 2s infinite;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.live-indicator.active {
    display: flex;
}

.live-dot {
    color: #ffffff;
    font-size: 10px;
    animation: liveBlink 1.5s infinite;
}

.live-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.live-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Live Animationen */
@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 0, 0, 0.8);
    }
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Twitch Thumbnail Container */
.twitch-thumbnail-container {
    display: block; /* Immer sichtbar */
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    margin-top: 60px; /* Reduzierter Abstand nach oben */
}

.twitch-thumbnail-container.hidden {
    display: none; /* Nur versteckt wenn explizit gesetzt */
}

.twitch-thumbnail-link {
    position: relative;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.twitch-thumbnail-link:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.twitch-thumbnail {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Mobile Twitch Thumbnail Anpassungen */
@media (max-width: 768px) {
    .twitch-thumbnail-container {
        margin-top: 30px; /* Weniger Abstand auf Tablets */
        margin-bottom: 1.5rem;
        padding: 0 20px; /* Seitlicher Abstand */
    }
    
    .twitch-thumbnail {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .twitch-overlay i {
        font-size: 2rem;
    }
    
    .twitch-overlay span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .twitch-thumbnail-container {
        margin-top: 20px; /* Minimaler Abstand auf Handys */
        margin-bottom: 1rem;
        padding: 0 15px; /* Weniger seitlicher Abstand */
    }
    
    .twitch-thumbnail {
        border-radius: 8px;
    }
    
    .twitch-overlay i {
        font-size: 1.5rem;
    }
    
    .twitch-overlay span {
        font-size: 0.9rem;
    }
}

.twitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.twitch-thumbnail-link:hover .twitch-overlay {
    opacity: 1;
}

.twitch-overlay i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.twitch-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile Anpassung für Twitch Thumbnail */
@media (max-width: 768px) {
    .twitch-thumbnail {
        max-width: 100%;
    }
    
    .twitch-overlay i {
        font-size: 2rem;
    }
    
    .twitch-overlay span {
        font-size: 1rem;
    }
    
    /* Twitch iframe mobile Anpassungen */
    .twitch-thumbnail-container iframe {
        width: 100% !important;
        max-width: 100vw !important;
        height: 240px !important;
        min-height: 240px !important;
    }
    
    .twitch-thumbnail-container {
        margin-top: 60px; /* Weniger Abstand auf mobilen Geräten */
        padding: 0 10px; /* Seitlicher Abstand */
    }
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff0000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff0000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.social-nav {
    display: flex;
    gap: 1rem;
}

.social-nav a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-nav a:hover {
    color: #ff0000;
}

.test-live-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.test-live-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 1000px; /* Erhöht für mehr Platz mit Twitch iframe */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0; /* Keine Navigation mehr */
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(139, 0, 0, 0.6) 100%);
    padding-bottom: 100px; /* Zusätzlicher Abstand unten */
    padding-top: 60px; /* Reduzierter Abstand oben */
}

/* Mobile Hero Section Anpassungen */
@media (max-width: 768px) {
    .hero {
        min-height: 600px; /* Reduziert für Tablets */
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px; /* Noch kleiner für Handys */
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(139, 0, 0, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.cclp {
    color: #ff0000;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.esports {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff3333;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 5rem; /* Noch mehr Abstand nach oben */
    margin-bottom: 3rem; /* Zusätzlicher Abstand nach unten */
    flex-wrap: wrap;
}

/* Mobile Buttons optimieren */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 3rem;
    }
    
    .cta-button {
        width: 280px;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .cta-button {
        width: 250px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ff0000;
}

.cta-button.secondary:hover {
    background: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ff0000;
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease-out;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-visual {
    animation: fadeInRight 1s ease-out;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(139, 0, 0, 0.5) 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Join Us Section */
.join-us {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.join-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 150px;
    backdrop-filter: blur(5px);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link.twitch:hover {
    border-color: #9146ff;
    box-shadow: 0 10px 30px rgba(145, 70, 255, 0.3);
}

.social-link.discord:hover {
    border-color: #5865f2;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.social-link.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.social-link i {
    font-size: 2.5rem;
}

.social-link.twitch i {
    color: #9146ff;
}

.social-link.discord i {
    color: #5865f2;
}

.social-link.youtube i {
    color: #ff0000;
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Eigenständige Video Sektion */
.video-section {
    padding: 15rem 0 6rem 0; /* Maximaler Abstand */
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(26, 26, 26, 0.4) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10rem; /* Zusätzlicher Abstand vom Hero */
}

/* Event Banner */
.event-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.5) 0%, rgba(26, 26, 26, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.event-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Bild und Text daneben */
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(139, 0, 0, 0.6) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

/* Video in voller Breite - separat von Bild/Text Layout */
.event-video-full {
    grid-column: 1 / -1; /* Über beide Spalten */
    width: 100%;
}

.event-visual {
    text-align: center;
}

.event-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

/* Event Video - Eigenständige Sektion */
.event-video-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.6) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.event-video-large {
    width: 100%;
    height: 506px; /* 16:9 Aspect Ratio für 900px Breite */
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-video-large:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .event-video-section {
        padding: 2rem 0;
    }
    
    .event-video-large {
        height: 250px; /* 16:9 für mobile */
    }
}

@media (max-width: 480px) {
    .event-video-large {
        height: 200px; /* Kleiner für sehr kleine Bildschirme */
    }
}

.event-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.event-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.detail-item i {
    color: #ff0000;
    font-size: 1.2rem;
}

.event-button {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.event-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(255, 0, 0, 0.8), 0 0 70px rgba(255, 0, 0, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff0000;
}

.footer-text {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #666666;
    font-size: 0.8rem;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 30px;
        max-height: 30px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(139, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .social-nav {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
    }
    
    .event-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-details {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about, .what-we-do, .join-us, .event-banner {
        padding: 60px 0;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .event-content {
        padding: 2rem 1.5rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #cc0000, #ff0000);
}

/* Selection Styling */
::selection {
    background: rgba(255, 0, 0, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 0, 0, 0.3);
    color: #ffffff;
}

/* Add glow effect to CCLP text on hover */
.cclp:hover {
    text-shadow: 0 0 50px rgba(255, 0, 0, 0.8), 0 0 100px rgba(255, 0, 0, 0.6);
}
