﻿/*Register Page*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   
    overflow: hidden;
    background-color: #050505;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #acacac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn {
    background: linear-gradient(90deg, #ff3a82, #5233ff);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 58, 130, 0.3);
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 58, 130, 0.4);
    }

.reg.card {
    box-shadow: 0px 0px 3px 0px #6734f1 !important;
}

.reg .col-form-label{
    text-align:left !important;
}

.form-control, .input-group-text,.form-select {
    border-color: #6b7999 !important;
    border-radius:3px;
}
.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.sphere-1 {
    width: 40vw;
    height: 40vw;
    background: linear-gradient(40deg, rgba(255, 0, 128, 0.8), rgba(255, 102, 0, 0.4));
    top: -10%;
    left: -10%;
    animation: float-1 15s ease-in-out infinite alternate;
}

.sphere-2 {
    width: 45vw;
    height: 45vw;
    background: linear-gradient(240deg, rgba(72, 0, 255, 0.8), rgba(0, 183, 255, 0.4));
    bottom: -20%;
    right: -10%;
    animation: float-2 18s ease-in-out infinite alternate;
}

.sphere-3 {
    width: 30vw;
    height: 30vw;
    background: linear-gradient(120deg, rgba(133, 89, 255, 0.5), rgba(98, 216, 249, 0.3));
    top: 60%;
    left: 20%;
    animation: float-3 20s ease-in-out infinite alternate;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-10%, -5%) scale(1.15);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    100% {
        transform: translate(-5%, 10%) scale(1.05);
        opacity: 0.6;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: 2;
}

.glow {
    position: absolute;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: pulse 8s infinite alternate;
    filter: blur(30px);
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}
/*End Register Page*/

/*Result Page*/
button:hover {
    background-color: #c23616;
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(194, 54, 22, 0.6);
}

#result-container {
    margin-top: 40px;
    background-color: #222;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.digit-box {
    width: 70px;
    height: 100px;
    overflow: hidden;
    border: 3px solid #f9ca24;
    border-radius: 10px;
    position: relative;
    background-color: #1b1b1b;
}

.spinner-container {
    height: 100px;
    width: 70px;
    overflow: hidden;
    position: relative;
}

.spinner {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: none;
    transform: translateY(0);
}

.number {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #f9ca24;
    text-shadow: 2px 2px 8px rgba(249, 202, 36, 0.6);
}

@media (max-width: 450px) {
    .digit-box {
        width: 50px;
        height: 70px;
    }

    .spinner-container {
        height: 70px;
        width: 50px;
    }

    .number {
        height: 70px;
        font-size: 40px;
    }
}
/*End Result Page*/

.event-container {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-img {
    width: 100%;
    height: auto;
    display: block;
}

.prize-scroll {
    max-height: 176px;
    overflow-y: auto;
    background-color: #fff;
    padding: 1rem 1rem;
}

.prize-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.prize-item {
    flex: 0 1 152px;
    max-width: 152px !important;
    margin: .4rem;
    background-color: #ffebcc;
    border-radius: 6px;
    text-align: center;
    padding: .5rem;
    border: 2px dashed #c92247b3;
    transition: transform 0.3s ease;
}

   
    .prize-item h5{
        font-size:.8rem;
    }
.prize-item  p{
    font-size: .82rem;
    line-height: 1;
    color: rgb(204 34 64);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.prize-icon {
    font-size: 1.5rem;
}

.event-footer {
    padding: .51rem;
    text-align: center;
    background-color: #fff;
}



.more-prizes {
    color: #410a87;
    font-size: 16px;
    margin-bottom: 2px;
}

.event-container h1 {
    -webkit-text-fill-color: #410a87;
    font-size: 2rem;
    margin-bottom: .1rem !important;
    padding: 10px;
    background: #d7c1ef;
    text-shadow: 2px 1px #ebfbff;
}