@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vibur&display=swap');

        :root {
            --bg-color: #121212;
            --primary-pink: #EC4399;
            --dark-pink: #E0218A;
            --text-color: #e0e0e0;
            --card-bg: #1e1e1e;
            --border-color: rgba(255, 255, 255, 0.1);
        }

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

        .neonText {
            color: #fff;
            text-shadow:
                0 0 3px #fff,
                0 0 5px #fff,
                0 0 10px #fff,
                0 0 21px rgba(236, 67, 153, 0.5),
                0 0 41px rgba(236, 67, 153, 0.5),
                0 0 46px rgba(236, 67, 153, 0.5),
                0 0 51px rgba(236, 67, 153, 0.5),
                0 0 76px rgba(236, 67, 153, 0.5);
            font-size: 6.2rem;
            font-weight: 400;
            animation: pulsate 0.11s ease-in-out infinite alternate;
               font-family: "Vibur", sans-serif;
        }

        @media (max-width: 600px) {
            .neonText {
                font-size: 6.2rem;
                text-shadow:
                    0 0 2px #fff,
                    0 0 3px #fff,
                    0 0 6px #fff,
                    0 0 10px rgba(236, 67, 153, 0.4),
                    0 0 20px rgba(236, 67, 153, 0.4),
                    0 0 25px rgba(236, 67, 153, 0.4),
                    0 0 30px rgba(236, 67, 153, 0.4),
                    0 0 40px rgba(236, 67, 153, 0.4);
            }
        }

        @keyframes pulsate {
                
            100% {

                text-shadow:
                0 0 2px #fff,
                0 0 5px #fff,
                0 0 9px #fff,
                0 0 20px rgba(236, 67, 153, 0.5),
                0 0 40px rgba(236, 67, 153, 0.5),
                0 0 45px rgba(236, 67, 153, 0.5),
                0 0 50px rgba(236, 67, 153, 0.5),
                0 0 75px rgba(236, 67, 153, 0.5);
            
        }
            
            0% {

                text-shadow:
                0 0 2px #fff,
                0 0 5px #fff,
                0 0 9px #fff,
                0 0 19px rgba(236, 67, 153, 0.5),
                0 0 36px rgba(236, 67, 153, 0.5),
                0 0 40px rgba(236, 67, 153, 0.5),
                0 0 47px rgba(236, 67, 153, 0.5),
                0 0 70px rgba(236, 67, 153, 0.5);


        }
    }

    @media (max-width: 600px) {
        @keyframes pulsate {
            100% {
                text-shadow:
                    0 0 2px #fff,
                    0 0 4px #fff,
                    0 0 6px #fff,
                    0 0 12px rgba(236, 67, 153, 0.4),
                    0 0 24px rgba(236, 67, 153, 0.4),
                    0 0 28px rgba(236, 67, 153, 0.4),
                    0 0 32px rgba(236, 67, 153, 0.4),
                    0 0 45px rgba(236, 67, 153, 0.4);
            }

            0% {
                text-shadow:
                    0 0 2px #fff,
                    0 0 4px #fff,
                    0 0 6px #fff,
                    0 0 10px rgba(236, 67, 153, 0.4),
                    0 0 18px rgba(236, 67, 153, 0.4),
                    0 0 22px rgba(236, 67, 153, 0.4),
                    0 0 26px rgba(236, 67, 153, 0.4),
                    0 0 36px rgba(236, 67, 153, 0.4);
            }
        }
    }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- Diamond Background --- */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('diagmonds.webp');
            background-repeat: repeat;
            z-index: -1;
            opacity: 0.5;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* --- Header & Navigation --- */
        header {
            width: 100%;
            padding: 20px 0;
            text-align: center;
        }

        .logo {
            font-family: 'Russo One', sans-serif;
            font-size: clamp(2.5rem, 8vw, 4rem);
            color: var(--primary-pink);
            text-transform: uppercase;
            text-shadow: 0 0 5px var(--primary-pink),
                         0 0 10px var(--primary-pink),
                         0 0 20px var(--dark-pink),
                         0 0 40px var(--dark-pink);
            animation: flicker 1.5s infinite alternate;
        }
        
        @keyframes flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow:
                0 0 4px var(--primary-pink),
                0 0 11px var(--primary-pink),
                0 0 19px var(--primary-pink),
                0 0 40px var(--dark-pink),
                0 0 80px var(--dark-pink);
            }
            20%, 24%, 55% {        
                text-shadow: none;
            }
        }

        /* --- Hero Section --- */
        .hero {
            width: 100%;
            margin: 40px 0;
            display: flex;
            justify-content: center;
        }

        .hero-image {
            width: 100%;
            max-width: 800px;
            border-radius: 15px;
            border: 3px solid var(--border-color);
            box-shadow: 0 0 20px rgba(255, 0, 230, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hero-image:hover {
            transform: scale(1.02);
            box-shadow: 0 0 30px rgba(236, 67, 153, 0.5);
        }

        /* --- Events Section --- */
        .events-section {
            width: 100%;
            max-width: 800px;
            margin-bottom: 40px;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 10px;
        }

        .events-section h2 {
            font-family: 'Russo One', sans-serif;
            font-size: 1rem;
            text-align: center;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .events-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .event-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px;
            background-color: rgba(0,0,0,0.2);
            border-radius: 10px;
            border-left: 4px solid var(--primary-pink);
            transition: background-color 0.3s ease;
        }

        .event-item:hover {
            background-color: rgba(255, 0, 230, 0.1);
        }

        .event-date {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--primary-pink);
            flex-basis: 20%;
        }

        .event-description {
            font-size: 0.9rem;
            flex-grow: 1;
            text-align: center;
        }

        .event-time {
            font-size: 0.8rem;
            color: #aaa;
            flex-basis: 20%;
            text-align: right;
        }

        /* --- Social Links --- */
        .socials {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .social-link {
            color: var(--text-color);
            font-size: 2rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-link:hover {
            color: var(--primary-pink);
            transform: translateY(-5px) scale(1.1);
            text-shadow: 0 0 10px var(--primary-pink);
        }

        /* --- Gemini AI Features Section --- */
        .gemini-section {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .gemini-section {
                grid-template-columns: 1fr 1fr;
            }
        }

        .gemini-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .gemini-card h2 {
            font-family: 'Russo One', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .gemini-card p {
            color: #aaa;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .gemini-card input {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #444;
            background-color: #333;
            color: var(--text-color);
            margin-bottom: 15px;
        }

        .gemini-button {
            background: linear-gradient(45deg, var(--dark-pink), var(--primary-pink));
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 0, 230, 0.4);
        }

        .gemini-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 0, 230, 0.7);
        }
        
        /* --- Twitch Embed Section --- */
        .stream-section {
            width: 100%;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid var(--border-color);
            margin-bottom: 40px;
        }
        
        .stream-section h2 {
            text-align: center;
            font-family: 'Russo One', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .twitch-embed {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }

        .twitch-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }
        
        /* --- Modal & Loader --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .modal-overlay.visible {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-color);
            width: 90%;
            max-width: 500px;
            text-align: center;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        .modal-overlay.visible .modal-content {
            transform: scale(1);
        }
        .modal-title {
            font-family: 'Russo One', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-pink);
        }
        .modal-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            white-space: pre-wrap; /* Allows line breaks */
        }
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #888;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .loader {
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-pink);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* --- Footer --- */
        footer {
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
            color: #888;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 600px) {
            .event-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            .event-description {
                text-align: left;
                font-size: 1rem;
            }
            .event-time {
                text-align: left;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 768px) {
            .twitch-chat-container {
                display: none;
            }
        }

        