* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root{
    --primary-font-color-gradient: linear-gradient(45deg, #ff3366, #ff0022);
    --primary-font-color:  #ff0022;
    --primary-bg-color: #0a0a0a;
}

html{
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

nav {
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
}

nav{
    z-index: 99;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: var(--primary-font-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-font-color);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}


.hero-content {
    max-width: 800px;
    z-index: 2;

}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: var(--primary-font-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #a0a0a0;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background: #111;
    border: 0.1px solid red;
    box-shadow: 0px 0px 7rem 0.2rem rgba(255, 0, 0, 0.512);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 2rem 0.2rem rgba(255, 0, 0, 0.212);
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-font-color);
}

.countdown-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
    }

    .countdown-number {
        font-size: 2rem;
    }
}
    
.workshops-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
    z-index: 2;

}

.workshops-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.workshops-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-card {
    z-index: 2;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 51, 102, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.workshop-card:hover::before {
    transform: translateX(100%);
}

.workshop-date {
    color: #ff3366;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.workshop-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.workshop-description {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workshop-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.workshop-seats {
    color: #ff3366;
    font-size: 0.9rem;
}

.register-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s;
}

.register-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .workshops-header h1 {
        font-size: 2.5rem;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}






.about-section {
    padding: 0rem 2rem;
    background: rgba(10, 10, 10, 0.8);
}

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

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #ff3366;
    margin-bottom: 2rem;
}

.about-description {
    color: #a0a0a0;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-image {
    width: 80%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}


.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff3366;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .about-content {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }

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

    .stats-container {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}





.events-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.events-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-swiper {
    padding: 2rem 1rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 51, 102, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.event-image {
    position: relative;
    overflow: hidden;
}

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

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

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 51, 102, 0.9);
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.event-date span:first-child {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.event-type {
    color: #ff3366;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.event-details {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.event-prize {
    color: #ff3366;
    font-weight: bold;
}

.event-team {
    color: #ffffff;
}

.register-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.register-btn:hover {
    transform: scale(1.02);
}

/* Swiper custom styles */
.swiper-button-next,
.swiper-button-prev {
    color: #ff3366;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: #ff3366;
}

@media (max-width: 768px) {
    .events-title {
        font-size: 2rem;
    }
    
    .events-section {
        padding: 2rem 1rem;
    }
}



/* swipper */

.swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 2 ;
  }
  
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
    z-index: 2 ;

    }
  
.picture {
    width: 320px;
    height: 320px;
    overflow: hidden;
    z-index: 2 ;

}
.picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2 ;

}
  
.detail {
    padding: 25px 20px;
    font-weight: 600;
    text-align: center;
    z-index: 2 ;

}
    
.detail   h3 {
    margin: 0;
    font-size: 20px;
}

.detail   span {
    display: block;
    font-size: 16px;
    color: #f44336;
}














.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.footer-top {
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ff3366;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff3366;
    color: white;
    transform: translateY(-3px);
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff3366;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255, 51, 102, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    outline: none;
}

.newsletter-input:focus {
    border-color: #ff3366;
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #a0a0a0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff3366;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}











.sponsors-section {
    padding: 6rem 2rem;
    color: #ffffff;
    position: relative;
  }

  .geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 10% 20%, transparent 0.5px, #000000 0.6px) 0 0/20px 20px,
      linear-gradient(to right, rgba(255, 25, 67, 0.1) 1px, transparent 1px) 0 0/20px 20px;
    opacity: 0.3;
    pointer-events: none;
  }

  .section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-font-color);
    font-weight: 600;
    letter-spacing: 2px;
  }

  .section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-family: 'Monaco', monospace;
  }

  .sponsors-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .sponsor-item:hover {
    transform: translateY(-10px);
  }

  .sponsor-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1rem;
  }

  .sponsor-logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, #ff1943, transparent);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .sponsor-item:hover .sponsor-logo::before {
    opacity: 1;
  }

  .sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: brightness(1);
    transition: filter 0.3s ease;
  }

  .sponsor-item .sponsor-logo img{
    transition: 0.3s ease;
  }

  .sponsor-item:hover .sponsor-logo img {
    transform: scale(1.3);
  }

  .sponsor-name {
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    font-family: 'Monaco', monospace;
    position: relative;
    padding: 0.5rem 1rem;
  }

  .sponsor-name::before {
    content: '<';
    color: #ff1943;
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
  }

  .sponsor-name::after {
    content: '/>';
    color: #ff1943;
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
  }

  .sponsor-item:hover .sponsor-name::before,
  .sponsor-item:hover .sponsor-name::after {
    opacity: 1;
    transform: translateX(0);
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2.5rem;
    }
    
    .sponsors-list {
      gap: 2rem;
    }
    
    .sponsor-logo {
      width: 100px;
      height: 100px;
    }
  }


  
.wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  
  .box div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 6px solid rgba(255,255,255,0.8);
  }
  
  .box div:nth-child(1) {
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
  }
  
  .box div:nth-child(2) {
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
  }
  .box div:nth-child(3) {
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
  }
  
  .box div:nth-child(4) {
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
  }
  
  .box div:nth-child(5) {
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
  }
  
  .box div:nth-child(6) {
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
  }
  
  .box div:nth-child(7) {
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
  }
  
  .box div:nth-child(8) {
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
  }
  
  .box div:nth-child(9) {
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
  }
  
  .box div:nth-child(10) {
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
  }
  
  @keyframes animate {
    0% {
      transform: scale(0) translateY(-90px) rotate(360deg);
      opacity: 1;
    }
    
    100% {
      transform: scale(1.3) translateY(-90px) rotate(-180deg);
      border-radius: 50%;
      opacity: 0;
    }
  }















  .events-container {
    padding: 2rem 2rem;
    position: relative;
    z-index: 2;
}

.events-header {
    text-align: center;
    margin-bottom: 4rem;
}

.events-header h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.events-header p {
    color: #a0a0a0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.major-events {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
    overflow-x: auto;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.major-event-card {
    min-width: 300px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    flex: 0 0 auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.major-event-card:hover {
    transform: scale(1.02);
}

.major-event-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.major-event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.major-event-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.major-event-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.other-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-category {
    background: rgba(255, 51, 102, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

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

.event-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ff3366, #ff0022);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff3366, #ff0022);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.category-title {
    font-size: 1.3rem;
    color: #ffffff;
}

.event-list {
    list-style: none;
}

.event-list li {
    padding: 0.5rem 0;
    color: #a0a0a0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-desc{
    color: #a0a0a0;
}

.event-list li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.prize-amount {
    color: #ff3366;
    font-weight: bold;
}

@media (max-width: 768px) {
    .events-header h1 {
        font-size: 2.5rem;
    }
    
    .major-events {
        gap: 1rem;
    }

    .major-event-card {
        min-width: 250px;
        height: 350px;
    }
}