@font-face {
            font-family: 'TeleNeo';
            src: url('/fonts/TeleNeoWeb-Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'TeleNeo';
            src: url('/fonts/TeleNeoWeb-Bold.woff2') format('woff2');
            font-weight: bold;
            font-style: normal;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'TeleNeo', sans-serif;
        }
        
        body {
            background-color: #050a1c;
            color: white;
            overflow-x: hidden;
        }
        
        .container {
            display: flex;
            min-height: 100vh;
        }
		
		        
        .scroll-buttons {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
		
		.scroll-btn {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
			padding: 10px;
        }
        
        
        /* Material Icons */
        .material-symbols-rounded {
            font-variation-settings:
            'FILL' 1,
            'wght' 400,
            'GRAD' 0,
            'opsz' 48;
            font-size: 60px;
        }
        
        /* Side Navigation */
        .side-nav {
            width: 65px;
            background-color: rgba(10, 15, 35, 0.8);
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        
        .side-nav a {
            color: white;
            text-decoration: none;
            margin: 15px 0;
            font-size: 22px;
            transition: color 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .side-nav a span {
            font-size: 10px;
            margin-top: 5px;
        }
        
        .side-nav a:hover {
            color: #e6007e;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            background-color: #050a1c;
            overflow: hidden;
        }
        
        .hero-content {
            padding: 0 5%;
            width: 50%;
            position: relative;
            z-index: 2;
            margin-left: 65px;
        }
        
        .camp-logo {
            max-width: 100%;
            height: auto;
            margin-bottom: 30px;
        }
        
        .register-btn {
            background-color: #e6007e;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            transition: transform 0.3s;
            border: none;
            outline: none;
        }
        
        .register-btn:hover {
            transform: scale(1.05);
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 50%;
            z-index: 1;
            display: flex;
            justify-content: flex-end;
            align-items: end;
        }
        
        .hero-image img {
            height: 90%;
            object-fit: contain;
        }
        
        .magenta-shapes {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 50%;
            z-index: 0;
        }
        
        .magenta-shapes img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        
        /* Training Section */
        .training-section {
            padding: 80px 5%;
            position: relative;
            background-image: url('/img/grid-background.png');
            background-size: cover;
            display: flex;
            flex-wrap: wrap;
        }
        
        .training-box-container {
            width: 30%;
            background-color: #e6007e;
            padding: 40px;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            position: relative;
            transform: skew(-10deg);
        }
        
        .training-carousel {
            width: 100%;
            overflow: hidden;
            transform: skew(10deg); /* Counter-skew the content */
        }
        
        .training-slider {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .training-box {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .training-box .material-symbols-rounded {
            margin-bottom: 20px;
        }
        
        .training-box h3 {
            font-size: 24px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .training-box p {
            font-size: 16px;
            line-height: 1.5;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            transform: skew(10deg); /* Counter-skew the dots */
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background-color: white;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .dot.active {
            transform: scale(1.5);
        }
        
        .training-content {
            width: 65%;
            margin-left: 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .training-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .training-content h2 .highlight {
            color: #e6007e;
        }
        
        .training-content p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Lecturers Section */
        .lecturers-section {
            padding: 80px 0 80px 65px;
            position: relative;
            background-color: #e6007e;
            background-image: url('/img/grid-background.png');
            background-size: cover;
            background-blend-mode: exclusion;
            overflow: hidden;
        }
        
        .lecturers-section h2 {
            font-size: 36px;
            margin-bottom: 40px;
            padding-left: 5%;
            color: white;
        }
        
        .lecturers-container {
            display: flex;
            overflow-x: auto;
            padding: 20px 5%;
            scroll-behavior: smooth;
            -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
            scrollbar-width: none;  /* Hide scrollbar for Firefox */
        }
        
        .lecturers-container::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome, Safari and Opera */
        }
        
        .lecturer-card {
            min-width: 300px;
            width: 300px;
            height: 450px;
            background-color: #050a1c;
            margin-right: 30px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
        }
        
        .lecturer-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .lecturer-card p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
            position: relative;
            z-index: 3;
        }
        
        .lecturer-image {
			width: 100%;
			bottom: 0px;
			height: 250px;
			object-fit: contain;
			position: absolute;
			z-index: 2;
        }
        
        .lecturer-watermark {
            position: absolute;
            bottom: 0;
            right: 0;
            font-size: 120px;
            font-weight: bold;
            opacity: 0.1;
            color: white;
            line-height: 0.8;
            z-index: 1;
            text-transform: uppercase;
        }
        
        /* Registration Section */
        .registration-section {
            position: relative;
            height: 600px;
            overflow: hidden;
            background-color: #050a1c;
            width: 100%;
        }
        
        .registration-title {
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            z-index: 10;
            text-transform: uppercase;
        }
        
        .registration-slider {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease;
            /* Start with the middle slide (game selection) */
            transform: translateX(-33.333%);
        }
        
        .registration-slide {
            width: 33.333%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        /* Updated game selection styling to match the template */
        .game-selection {
            display: flex;
            height: 100%;
            width: 100%;
        }
        
        .game-option {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }
        
        .game-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .game-option-content {
            position: relative;
            z-index: 2;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .game-option h3 {
            font-size: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .game-arrows {
            font-size: 60px;
            color: white;
        }
        
        .brawl-stars-option {
            background-image: url('/img/braw.png');
        }
        
        .league-of-legends-option {
            background-image: url('/img/lol.png');
        }
        
        .game-camps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 100px 5% 50px;
            position: relative;
            background-size: cover;
            background-position: center;
            width: 100%;
        }
        
        .brawl-stars-camps {
            background-image: url('/img/braw.png');
        }
        
        .league-of-legends-camps {
            background-image: url('/img/lol.png');
        }
        
        .game-camps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }
        
        /* Updated back arrow styling */
        .back-arrow {
            position: absolute;
            top: 0;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: white;
            cursor: pointer;
            z-index: 5;
            min-width: 100px;
            background-size: cover;
            background-position: center;
        }
        
        .back-arrow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }
        
        /* Specific positioning for each back arrow */
        #brawl-back-arrow {
            right: 0;
            padding-right: 20px;
            padding-left: 20px;
            background-image: url('/img/lol.png'); /* League of Legends background */
        }
        
        #lol-back-arrow {
            left: 0;
            padding-left: 100px;
            padding-right: 20px;
            background-image: url('/img/braw.png'); /* Brawl Stars background */
        }
        
        .game-title {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            font-weight: bold;
            opacity: 0.1;
            color: white;
            z-index: 1;
            text-transform: uppercase;
        }
        
        .camp-card {
            width: 350px;
            height: 350px;
            background-color: rgba(5, 10, 28, 0.8);
            margin: 20px;
            padding: 30px;
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
        }
        
        .camp-date {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .camp-level {
            font-size: 72px;
            font-weight: bold;
            color: #e6007e;
            margin-bottom: 10px;
            opacity: 0.8;
        }
        
        .camp-game {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .camp-register {
            background-color: #e6007e;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            transition: transform 0.3s;
            align-self: flex-start;
        }
        
        .camp-register:hover {
            transform: scale(1.05);
        }
        
        /* Partners Section */
        .partners-section {
            padding: 60px 5% 60px 65px;
            background-color: #000;
            text-align: center;
        }
        
        .partners-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .partner-logo {
            height: 60px;
            margin: 20px 30px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            transform: scale(1.1);
        }
        
       /* Location Section - Updated to hide info and set width to 50% */
.location-section {
    position: relative;
    background-color: #050a1c;
    overflow: visible;
    min-height: 500px;
    display: block;
    width: 100%;
    margin: 0 auto; /* Center the section */
}


.location-map {
    width: 100%;
    height: 500px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

/* Map gradient overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,10,28,0) 0%, rgba(5,10,28,0.8) 70%, rgba(5,10,28,1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hide map marker */
.map-marker {
    display: none;
}

        .alert {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 5px;
            z-index: 1000;
            max-width: 400px;
        }
        
        .alert-danger {
            background-color: #dc3545;
            color: white;
        }
        
        .alert-success {
            background-color: #28a745;
            color: white;
        }
        

    
        
        .location-info {
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            width: 100%;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            z-index: 4;
            text-align: right;
        }
        
        .location-info h2 {
            font-size: 36px;
            margin-bottom: 20px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        
        .location-address {
            font-size: 18px;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .equipment-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 20px;
            width: 100%;
        }
        
        .equipment-item {
            width: 150px;
            height: 150px;
            background-color: #e6007e;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
            text-align: center;
        }
        
        .equipment-item .material-symbols-rounded {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .equipment-item h4 {
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        .equipment-item p {
            font-size: 12px;
        }
        
        /* Responsive adjustments for location section */
        @media (max-width: 1200px) {
            .location-info {
                width: 70%;
                right: 3%;
				padding: 30px;
            }
            
            .equipment-item {
                width: 130px;
                height: 130px;
            }
        }
        
        @media (max-width: 992px) {
            .hero-content {
                width: 60%;
                margin-left: 80px;
            }
            
            .hero-image, .magenta-shapes {
                width: 40%;
            }
            
            .training-box-container, .training-content {
                width: 100%;
                margin-left: 0;
            }
            
            .training-box-container {
                margin-bottom: 40px;
            }
            
            .location-info {
                width: 70%;
                padding: 30px;
            }
            
            .equipment-item {
                width: 120px;
                height: 120px;
                padding: 10px;
            }
            
            .equipment-item .material-symbols-rounded {
                font-size: 30px;
            }
            
            .game-option h3 {
                font-size: 28px;
            }
            
            .camp-card {
                width: 300px;
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .side-nav {
                width: 50px;
            }
            
            .hero-content {
                width: 100%;
                padding: 0 10%;
                text-align: center;
                margin-left: 0;
            }
            
            .hero-image, .magenta-shapes {
                display: none;
            }
            
            .lecturers-section, .partners-section {
                padding-left: 0;
            }
            
            .equipment-item {
                width: 150px;
                height: 150px;
            }
            
            .registration-section {
                height: 500px;
            }
            
            .game-selection {
                flex-direction: column;
            }
            
            .game-option {
                width: 100%;
                height: 50%;
            }
            
            .camp-card {
                width: 280px;
                height: 280px;
                padding: 20px;
            }
            
            .camp-date {
                font-size: 24px;
            }
            
            .camp-level {
                font-size: 56px;
            }
            
            .camp-game {
                font-size: 20px;
            }
            
            .location-section {
                height: auto;
                overflow: hidden;
            }
            
            .location-map {
                height: 400px;
            }
            
            .map-overlay {
                background: linear-gradient(0deg, rgba(5,10,28,1) 0%, rgba(5,10,28,0.8) 30%, rgba(5,10,28,0) 100%);
            }
            
            .location-info {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                width: 100%;
                max-width: none;
                padding: 30px;
                align-items: center;
                text-align: center;
                background-color: #050a1c;
            }
            
            .equipment-container {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .training-box-container {
                padding: 20px;
            }
            
            .lecturer-card {
                min-width: 250px;
                width: 250px;
                height: 400px;
            }
            
            .location-map {
                height: 300px;
            }
            
            .equipment-item {
                width: 100px;
                height: 100px;
            }
            
            .equipment-item .material-symbols-rounded {
                font-size: 24px;
                margin-bottom: 5px;
            }
            
            .equipment-item h4 {
                font-size: 12px;
                margin-bottom: 2px;
            }
            
            .equipment-item p {
                font-size: 10px;
            }
            
            .camp-card {
                width: 100%;
                height: 100%;
                padding: 15px;
                margin: 10px;
				border: 1px white solid;
				text-align: center;
				align-items: center;
            }
            
            .camp-date {
                font-size: 20px;
            }
            
            .camp-level {
                font-size: 48px;
            }
            
            .camp-game {
                font-size: 18px;
            }
            
            .camp-register {
                padding: 10px 20px;
                font-size: 16px;
				width: 100%;
            }
        }
		
		/* Auto-Scrolling Gallery Styles */
        .gallery-section {
            padding: 0 0 0 65px;
            background-color: #050a1c;
            position: relative;
            height: 400px; /* Fixed height as requested */
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .gallery-section {
                padding-left: 5%;
            }
        }
        
        .gallery-container {
            height: 400px;
            overflow: hidden;
            position: relative;
        }
        
        .masonry-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-auto-rows: 150px;
            grid-gap: 0px;
            position: relative;
            transition: transform 0.5s ease-in-out;
        }
        
        @media (max-width: 1200px) {
            .masonry-gallery {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .masonry-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .masonry-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .gallery-item:nth-child(3n) {
            grid-row: span 2;
        }
        
        .gallery-item-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-item-bg {
            transform: scale(1.05);
        }