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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            min-height: 100vh;
        }

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

        header {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffd700;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #1e3c72;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .logo h1 {
            font-size: 2rem;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            flex-wrap: wrap;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
        }

        nav a:hover, nav a.active {
            background: #ffd700;
            color: #1e3c72;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        .hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="600" cy="200" r="80" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="400" cy="150" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><circle cx="800" cy="250" r="60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
            background-size: cover;
            background-position: center;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

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

        .section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .section h3 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .match-item, .team-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 10px;
            border-left: 4px solid #ffd700;
            transition: all 0.3s ease;
        }

        .match-item:hover, .team-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .match-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .match-teams {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .match-time {
            color: #ffd700;
            font-size: 0.9rem;
        }

        .standings-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }

        .standings-table th,
        .standings-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .standings-table th {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
            font-weight: bold;
        }

        .standings-table tr:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .full-width {
            grid-column: 1 / -1;
        }

        .news-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            margin: 1rem 0;
            border-radius: 10px;
            border-left: 4px solid #ffd700;
        }

        .news-date {
            color: #ffd700;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        footer {
            background: rgba(76, 175, 80, 1);
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 2px solid #ffd700;
        }

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            nav ul {
                justify-content: center;
            }
        }

        .icon {
            display: inline-block;
            width: 20px;
            height: 20px;
        }

        .btn {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #1e3c72;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        .responsive-image-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.responsive-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Optional: crop to fit container */
}

        .logo-frame {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .logo-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

                .icon {
            display: inline-block;
            width: 20px;
            height: 20px;
        }

        .btn {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #1e3c72;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        /* Enhanced Photos Section Styles */
        .photos-section {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.95));
            padding: 4rem 0;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .photos-section::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .section-title {
            text-align: center;
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #ffd700, #ffed4e, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
            position: relative;
            z-index: 1;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        }

        .subsection-title {
            font-size: 2rem;
            color: #ffd700;
            text-align: center;
            margin: 2rem 0;
            position: relative;
            z-index: 1;
        }

        /* Carousel Styles */
        .carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto 4rem;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 215, 0, 0.3);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .photo-placeholder {
            position: relative;
            height: 500px;
            overflow: hidden;
            background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
        }

        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .carousel-slide:hover .carousel-image {
            transform: scale(1.05);
        }

        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 3rem 2rem 2rem;
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .carousel-slide:hover .photo-overlay {
            transform: translateY(0);
        }

        .photo-overlay p {
            font-size: 1.2rem;
            font-weight: 500;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.4;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 215, 0, 0.9);
            color: #1e3c72;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:hover {
            background: #ffd700;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        /* Static Photos Grid */
        .static-photos {
            position: relative;
            z-index: 1;
        }

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

        .photo-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid rgba(255, 215, 0, 0.3);
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .photo-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 215, 0, 0.6);
        }

        .photo-placeholder.static {
            height: 300px;
            position: relative;
            overflow: hidden;
        }

        .static-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .photo-card:hover .static-image {
            transform: scale(1.1) rotate(2deg);
        }

        .photo-article {
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        }

        .photo-article h4 {
            font-size: 1.4rem;
            color: #ffd700;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .photo-article p {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .article-date {
            color: #ffd700;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 20px;
            display: inline-block;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .responsive-image-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            nav ul {
                justify-content: center;
            }

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

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

            .carousel-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .carousel-btn.prev {
                left: 10px;
            }

            .carousel-btn.next {
                right: 10px;
            }

            .photo-placeholder {
                height: 300px;
            }

            .photo-placeholder.static {
                height: 250px;
            }
        }
        //slide Pictures
            <style>
        .photoslider {
            max-width: 800px;
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin: 50px auto;
        }

        .imagebelt {
            display: flex;
            width: 500%;
            height: 100%;
            animation: autoshift 25s infinite;
        }

        .photoframe {
            width: 20%;
            height: 100%;
            position: relative;
        }

        .photoframe img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .textlayer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .photoframe:hover .textlayer {
            transform: translateY(0);
        }

        .headline {
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .caption {
            font-size: 0.9em;
            opacity: 0.9;
        }

        @keyframes autoshift {
            0%, 16% { transform: translateX(0%); }
            20%, 36% { transform: translateX(-20%); }
            40%, 56% { transform: translateX(-40%); }
            60%, 76% { transform: translateX(-60%); }
            80%, 96% { transform: translateX(-80%); }
            100% { transform: translateX(0%); }
        }

        .navbutton {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .navbutton:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .leftarrow {
            left: 15px;
        }

        .rightarrow {
            right: 15px;
        }

        .dotmenu {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .slidedot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slidedot.current {
            background: #333;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .photoslider {
                height: 300px;
                margin: 20px;
            }
            
            .navbutton {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }
                @media (max-width: 768px) {
            .kili-yt-embed-container {
                padding: 10px;
            }
            
            .kili-yt-embed-logo {
                font-size: 2rem;
            }
            
            .kili-yt-embed-main-heading {
                font-size: 2.5rem;
            }
            
            .kili-yt-embed-video-title {
                font-size: 1.4rem;
            }
            
            .kili-yt-embed-rating-container {
                flex-direction: column;
                gap: 10px;
            }
        }
                .kili-yt-embed-video-section {
            background-color: (255, 255, 255, 0.1);
            padding: 40px 0;
            margin-top: 20px;
        }

        .kili-yt-embed-video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            background-color: #333;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .kili-yt-embed-video-wrapper {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
        }

        .kili-yt-embed-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }

        .kili-yt-embed-video-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            border-radius: 0 0 10px 10px;
        }

        .kili-yt-embed-video-title {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }