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

body {
    background: #0a0f1c;
    color: #fff;
    line-height: 1.6;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

.logo {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 2;
}


.logo img {
    width: 200px;
}

.recap {
    position: absolute;
    top: 15px;
    right: 20px;
    text-align: right;
    z-index: 2;
}

.recap h2 {
    font-size: 40px;
}

.recap span {
    color: red;
    font-size: 50px;
}

.recap p {
    font-size: 14px;
    color: #ddd;
}

.log {
    display: flex;
    flex-wrap: wrap;
}

.hero-text h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 15px 0;
    color: #ffffffaa;
}

.hero-text .btn {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 15px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 15px #ff00ff, 0 0 30px #00ffff;
}

.hero-text .btn:hover {
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    box-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
}

@keyframes neon-flicker {
    0% { text-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff; }
    50% { text-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff; }
    100% { text-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff; }
}

.future-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(145deg, #0a0f1c, #1c1f2a);
    border-radius: 25px;
    box-shadow: 0 0 30px #00ffff33, 0 0 60px #ff00ff22;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.future-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #00ffff22, #ff00ff22, #00ffff22);
    animation: rotate-bg 15s linear infinite;
    z-index: 0;
    filter: blur(80px);
}

@keyframes rotate-bg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.future-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.future-content .top-text,
.future-content .bottom-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ccc;
}

.techno{
    background: linear-gradient(90deg,#00ffff,#ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.recap-highlight{
    background: linear-gradient(90deg,#ff0000,#ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}


.title-box {
    margin-bottom: 30px;
}

.title-box h1 {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
    animation: neon-flicker 2s infinite alternate;
    margin-bottom: 10px;
}

.title-box h2 {
    font-size: 1.5rem;
    color: #ffffffaa;
    text-shadow: 0 0 10px #00ffff44, 0 0 20px #ff00ff33;
    margin-bottom: 25px;
}

.bottom-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.7;
}

.innovation {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
    margin-top: 20px;
}

.future-image {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px #00ffff44, 0 0 40px #ff00ff22;
    margin-top: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.features .card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    width: 250px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #00ffff44;
    transition: 0.3s;
}

.features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px #00ffff, 0 0 30px #ff00ff;
}

.features .card h3 {
    margin-bottom: 10px;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
}

.participation {
    padding: 80px 20px;
    background: #0b0f1f;
}

.center-title h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.participants {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.participants p {
    background: rgba(0,255,255,0.05);
    border: 1px solid #00ffff55;
    border-radius: 20px;
    padding: 25px;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    min-width: 250px;
    transition: 0.3s;
    box-shadow: 0 0 15px #00ffff44, 0 0 30px #ff00ff33;
}

.participants p:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #00ffff, 0 0 50px #ff00ff;
}

.participants span {
    font-weight: bold;
    color: #ff00ff;
    text-transform: uppercase;
}

.grid-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.grid-section .box {
    background: rgba(0,255,255,0.05);
    border: 1px solid #00ffff55;
    border-radius: 25px;
    padding: 25px;
    width: 280px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 20px #00ffff44, 0 0 40px #ff00ff33;
}

.grid-section .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px #00ffff, 0 0 70px #ff00ff;
}

.box-title {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #ff00ff;
}

.register-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0f1c, #1c1f2a);
    border-radius: 25px;
    box-shadow: 0 0 30px #00ffff33, 0 0 60px #ff00ff22;
    position: relative;
    overflow: hidden;
}

.register-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.qr-side, .details-side {
    flex: 1;
    min-width: 300px;
    background: rgba(0,255,255,0.05);
    border: 2px solid #00ffff44;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 0 20px #00ffff44, 0 0 40px #ff00ff33;
    transition: 0.3s;
}

.qr-side:hover, .details-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px #00ffff, 0 0 80px #ff00ff;
}

.qr-side img {
    width: 200px;
    margin-bottom: 15px;
    border: 3px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
    transition: 0.3s;
}

.register-btn {
    display: inline-block;
    padding: 14px 40px;
    margin-top: 15px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
}

.register-btn:hover {
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    box-shadow: 0 0 30px #00ffff, 0 0 60px #ff00ff;
}

.details-side h2, .details-side h3 {
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #ff00ff;
}

.details-side p {
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
}

.details-side .contact {
    margin-top: 15px;
    font-weight: bold;
    color: #ff00ff;
}

.footer {
    text-align: center;
    padding: 30px 20px;
    background: #050817;
    border-top: 1px solid #00ffff44;
    color: #ffffffaa;
}

@media (max-width: 900px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .grid-section {
        flex-direction: column;
        align-items: center;
    }
    .register-wrapper {
        flex-direction: column;
    }
    .title-box h1 { font-size: 2.2rem; }
    .title-box h2 { font-size: 1.2rem; }
    .future-content .top-text { font-size: 1rem; }
}

@media (max-width: 500px) {
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
    .features .card { width: 80%; }
    .grid-section .box { width: 80%; }
    .title-box h1 { font-size: 1.8rem; }
    .title-box h2 { font-size: 1rem; }
    .future-content .top-text { font-size: 0.95rem; }
    .innovation { font-size: 1rem; }
    .register-btn { padding: 12px 30px; font-size: 0.95rem; }
    .qr-side img { width: 150px; }
}
.register-container{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:40px;
}

.qr-section{
    flex:1;
    height:420px;
}

.details-section{
    flex:1;
    height:420px;
}
@media (max-width: 900px){

.register-wrapper{
    flex-direction: column;
    align-items: center;
}

.qr-side,
.details-side{
    width: 100%;
    max-width: 400px;
}

}