@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Reggae+One&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Eater&display=swap');

:root{
    --main-color: #f7ab1c;
    --main-color-rgb: 247, 171, 28; /* RGB values for main-color */
    /* --second-color: #6b4349; */
    --second-color: #303745;
    /* --bg-color: #2F1F38; */
    --bg-color: #2F3D4E;
    --black: #15051E;
    --white: #fff;
    --light-white: rgba(255,255,255,.5);
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
    --meta-font:"Poppins", serif;
    --eater-font: "Poppins", serif;
    --jello-animation:jello 0.9s both;
    --bounce-animation:bounce 0.9s both;
    --pulse-animation:pulse 0.5s ease-in-out both;
    --shake-animation:shake 0.8s cubic-bezier(0.455, 0.030, 0.515,0.955) both;
    --float-animation:float 2s linear infinite;
}
header{
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

*{
    font-family: var(--meta-font);
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    scroll-padding-top: 8rem;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

::-webkit-scrollbar{
    width: 1rem;
}

::-webkit-scrollbar-track{
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    background-color: var(--white);
}

body{
    background-color: var(--bg-color);
}

section{
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes jello{
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounce{
    0% {
        transform: translateY(-45px);
        animation-timing-function: ease-in;
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    40% {
        transform: translateY(-24px);
        animation-timing-function: ease-in;
    }
    65% {
        transform: translateY(-12px);
        animation-timing-function: ease-in;
    }
    82% {
        transform: translateY(-6px);
        animation-timing-function: ease-in;
    }
    93% {
        transform: translateY(-4px);
        animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
        transform: translateY(0px);
        animation-timing-function: ease-out;
    }
    100% {
        transform: translateY(0px);
        animation-timing-function: ease-out;
        opacity: 1;
    }
}

@keyframes pulse{
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(.9);
    }
}

@keyframes shake{
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }
    10% {
        transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    90% {
        transform: rotate(2deg);
    }
}

@keyframes float{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-1rem);
    }
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.8;
    background: var(--main-color);
    color: var(--black);
    cursor: pointer;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    padding: 1rem 3rem;
}

.btn:hover{
    animation: var(--jello-animation);
}

.title{
    margin-bottom: 2rem;
    text-align: center;
}

.title span{
    font-size: 2rem;
    color: var(--main-color);
}

.title h3{
    font-family: var(--eater-font);
    font-size: 4rem;
    color: var(--white);
    font-weight: normal;
}
/* Header Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2rem);
    transition: background 0.3s ease-in-out;
}

.header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 1.5rem;
    z-index: 1000;
}

.header .flex .logo img {
    height: 6.3rem;
}

/* Navbar */
.header .flex .navbar {
    display: flex;
    align-items: center;
    opacity: 1;
    max-height: none;
}

@media screen and (max-width: 768px) {
    #menu-btn {
        display: block;
    }
    
    .header .flex .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(47, 61, 78, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .header .flex .navbar.active {
        opacity: 1;
        max-height: 500px;
        padding: 1.5rem 0;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.header .flex .navbar a {
    font-size: 2rem;
    margin-left: 2rem;
    color: var(--white);
    transition: color 0.3s ease-in-out;
}

.header .flex .navbar a:hover {
    color: var(--main-color);
}

/* Menu Button for Mobile */
#menu-btn {
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    display: none;
    margin-left: auto;
    margin-right: 2rem;
    transition: all 0.3s ease-in-out;
    z-index: 1001;
    position: relative;
    transform-origin: center;
    padding: 0.5rem;
    border-radius: 4px;
}

#menu-btn:hover {
    color: var(--main-color);
    background-color: rgba(255, 255, 255, 0.1);
}

#menu-btn.fa-times {
    transform: rotate(180deg);
    color: var(--main-color);
}

/* Profile Menu */
.profile-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.profile-pic {
    font-size: 30px;  /* Adjust size */
    color: #ff5733;  /* Vibrant color */
    cursor: pointer;
}
.profile-pic:hover {
    color: #ffcc00; /* Change color on hover */
}

/* Profile Dropdown */
.dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    padding: 12px;
    width: 180px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dropdown.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Content */
.dropdown p {
    text-align: center;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.dropdown button {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 1.6rem;
    transition: background 0.3s ease;
}

.dropdown button:hover {
    background: #e67e22;
}

/* Logout Button */
.dropdown .logout {
    background: #dc3545;
}

.dropdown .logout:hover {
    background: #c82333;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    /* Fixed header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(47, 61, 78, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .header .flex {
        padding: 1.2rem;
    }
    
    /* Menu button */
    #menu-btn {
        display: block;
        font-size: 2.5rem;
        margin-right: 1rem;
    }
    
    /* Navbar styles for mobile links */
    .navbar a {
        display: block;
        margin: 1.2rem 0;
        text-align: center;
        font-size: 2rem;
        padding: 0.5rem 0;
    }
    
    .navbar a {
        display: block;
        margin: 1.2rem 0;
        text-align: center;
        font-size: 2rem;
        padding: 0.5rem 0;
    }
    
    /* Profile section */
    .profile-container {
        width: 100%;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .profile-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem;
    }
    
    .profile-dropdown {
        position: static;
        width: 90%;
        margin: 1rem auto;
        display: none;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        padding: 1rem;
    }
    
    .profile-dropdown.show {
        display: block;
    }
    
    /* Adjust content for fixed header */
    body {
        padding-top: 80px;
    }
    
    section:first-of-type {
        margin-top: 1rem;
    }
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 80
}

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(47, 61, 78, 0.7), rgba(47, 61, 78, 0.7));
    z-index: 1;
}

.home video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home .content{
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.home .content p {
    color: var(--main-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(247, 171, 28, 0.5);
    animation: fadeInUp 1s ease-out forwards, float 3s ease-in-out infinite;
}

.home .content h3 {
    font-size: clamp(5rem, 10vw, 10rem);
    color: var(--white);
    font-family: var(--eater-font);
    font-weight: normal;
    opacity: 0;
    background: linear-gradient(120deg, #ffffff, #f7ab1c, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation: popIn 1.2s ease-out forwards 0.5s, shine 3s linear infinite;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    70% {
        transform: scale(1.1) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-text-container {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.animated-text-container::before,
.animated-text-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-color), transparent 20%, transparent 80%, var(--bg-color));
    z-index: 2;
    pointer-events: none;
}

.info-container{
    /* background: var(--second-color); */
    background-color: #2F3D4E;
}
.info-container .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 27rem);
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
}

.info-container .box-container .box{
    border-radius: 1rem;
    padding: 3rem 2rem;
    /* background-color: var(--main-color); */
    background-color: #fdfbca;
    text-align: center;
    transform: translateY(-1rem);
}

.info-container .box-container .box:nth-child(even){
    /* background: var(--bg-color); */
    background-color: #d7ab6e;
    transform: translateY(rem);
}

.info-container .box-container .box:nth-child(even) h3{
    color: var(--white);   
}

.info-container .box-container .box img{
    height: 25rem;
    width: 100%;
    object-fit: contain;
}

.info-container .box-container .box h3{
    margin-top: 2rem;
    font-size: 2rem;
    color: var(--black);
}

/* .info-container .box-container .box:nth-child(1) img{
    animation: var(--bounce-animation) infinite;
}

.info-container .box-container .box:nth-child(2) img{
    animation: var(--jello-animation) infinite;
}

.info-container .box-container .box:nth-child(3) img{
    animation: var(--pulse-animation) infinite;
}

.info-container .box-container .box:nth-child(4) img{
    animation: var(--shake-animation) infinite;
}

.info-container .box-container .box:nth-child(5) img{
    animation: var(--jello-animation) infinite;
}

.info-container .box-container .box:nth-child(6) img{
    animation: var(--bounce-animation) infinite;
} */

.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about .row .image{
    flex: 1 1 40rem;    
}

.about .row .image img{
    width: 100%;
    animation: var(--float-animation);
}

.about .row .content{
    flex: 1 1 40rem;
    text-align: center;
}

.about .row .content span{
    font-size: 2rem;
    color: var(--main-color);
}

.about .row .content h3{
    font-size: 3rem;
    color: var(--white);  
    margin-bottom: 1rem;
    margin-top: .5rem;  
}

.about .row .content p{
    line-height: 1.8;
    padding: .5rem 0;
    color: var(--light-white);
    font-size: 2rem;
}

.events .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 35rem);
    align-items: flex-start;
    justify-content: center;
    gap: 8rem;
}

.events .box-container .box{
    border-radius: 2rem;
    text-align: center;
    padding: 2rem;
    object-fit: cover;
    /* background-color: var(--second-color); */
    background-color: #ddab66;
}

.events .box-container .box:nth-child(odd){
    /* background-color: var(--main-color); */
    background-color:  #fdfbca;
}

.events .box-container .box:nth-child(odd) h3{
    color: var(--black);
}

.events .box-container .box:nth-child(odd) p{
    color: var(--black);
}

.events .box-container .box video{
    height: 20rem;
    margin-bottom: 1rem;
    border-radius: 2rem;
width:100%;
}

.events .box-container .box .HHH{
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.79;
    border-radius: 2rem;



}

/* .events .box-container .box:hover img{
    animation: var(--shake-animation);
} */

.events .box-container .box h3{
    font-size: 2rem;
    color: var(--white);
    margin: 1rem 0;
}

.events .box-container .box p{
    font-size: 1.6rem;
    color: var(--light-white);
    line-height: 1.8;
}

.countdown{
    background: var(--black);
}

.countdown section{
    position: relative;
    z-index: 0;
}

.countdown .image{
    position: absolute;
    top:0; left: 0; right: 0;
    z-index: -1;
}

.countdown .image img{
    width: 100%;
    animation: var(--float-animation);
}
.countdown .counter{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown .counter .box{
    text-align: center;
    width: 15rem;
    padding: 1rem;
    border-radius: 1rep;
    background-color: rgba(155,155,155,.1);
    backdrop-filter: blur(1rem);
}

.countdown .counter .box h3{
    font-size: 4.5rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.countdown .counter .box span{
    color: var(--light-white);
    font-size: 1.8rem;
}

.tickets{
    /* background: url('./background.jpg') center/cover
    no-repeat fixed; */
    background:#2F3D4E;
    background-blend-mode: color;
}

.tickets .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 27rem);
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.tickets .box-container .box{
    /* background: var(--bg-color); */
    background-color:  #fdfbca;
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.tickets .box-container .box:nth-child(2){
    /* background: var(--second-color); */
    background-color:  #fdfbca;
}

.tickets .box-container .box:hover{
    animation: var(--pulse-animation);
}

.tickets .box-container .box h3{
    font-size: 3rem;
    color: var(--second-color);
    padding-bottom: 1rem;
}

.tickets .box-container .box .price{
    font-size: 5rem;
    color: var(--main-color);
    margin: 1rem 0;
}

.tickets .box-container .box .price span{
    font-size: 3rem;
}

.tickets .box-container .box p{
    padding: 1rem 0;
    font-size: 1.8rem;
    color: var(--black);
    line-height: 1.8;
}

.team .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 27rem);
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.team .box-container .box{
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
}

.team .box-container .box .image{
    height: 35rem;
    overflow: hidden;
}

.team .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.team .box-container .box:hover .image img{
    transform: scale(1.1);
}

.team .box-container .box .share{
    background-color: rgba(0,0,0,.6);
    backdrop-filter: blur(2rem);
    position: absolute;
    top: 0; right: -10rem;
    height: 35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding: 1.5rem;
    z-index: 1;
}

.team .box-container .box:hover .share{
    right: -.1rem;
}

.team .box-container .box .share a{
    font-size: 2rem;
    color: var(--white);
    margin: 1rem 0;
}

.team .box-container .box .share a:hover{
    color: var(--main-color);
    animation: var(--jello-animation);
}

.team .box-container .box .info{
    background-color: var(--black);
    padding:1.5rem 1rem;
    text-align: center;
}

.team .box-container .box .info h3{
    font-size: 3rem;
    color: var(--white);
    margin-bottom: .5rem;
}

.team .box-container .box:hover .info h3{
    animation: var(--shake-animation);
}

.team .box-container .box .info span{
    color: var(--main-color);
    font-size: 1.6rem;
}

/* .contact .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact .row .content{
    flex: 1 1 40rem;
}

.contact .row .content h3{
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: .5rem;
}

.contact .row .content p{
    padding: .5rem 0;
    font-size: 1.8rem;
    color: var(--light-white);
}

.contact .row .content p a{
    color: var(--light-white);
}

.contact .row .content p a:hover{
    color: var(--main-color);
}

.contact .row form{
    flex: 1 1 40rem;
}

.contact .row form .input{
    margin: .5rem 0;
    width: 100%;
    padding: 1.4rem;
    color: var(--white);
    border-radius: .5rem;
    background-color: var(--light-white);
    text-transform: none;
}

.contact.row form textarea{
    height: 15rem;
    resize: none;
} */

.footer{
    /* background: var(--main-color); */
    height: 400px;
    background-color: black;
    text-align: center;
}

.footer .share{
    margin-bottom: 3rem;
}

.footer .share a{
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    margin: 0 .2rem;
    line-height: 5rem;
    color: var(--white);
    background-color: var(--second-color);
    border-radius: 50%;
}

.footer .share a:hover{
    animation: var(--jello-animation);
}

.footer .credit{
    font-size: 2rem;
    color: var(--bg-color);
}

.footer .credit span{
    color: var(--second-color);
}

.footer .image img{
    width: 100%;
}

/* New Profile Section Styles */
.profile-container {
    position: relative;
    margin-left: 1.5rem;
}

.profile-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    animation: var(--pulse-animation);
}

.profile-name {
    margin-left: 0.8rem;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 500;
}

.profile-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    width: 28rem;
    background: black;
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(1rem);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1000;
}

.profile-container:hover .profile-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.profile-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff9966 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: var(--float-animation);
}

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

.profile-info {
    margin-left: 1.5rem;
}

.profile-info h4 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-info p {
    font-size: 1.2rem;
    color: var(--black);
    opacity: 0.8;
}

.profile-menu-items {
    padding: 1rem 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.2s ease;
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--main-color);
    transform: translateX(5px);
}

.profile-menu-item i {
    margin-right: 1rem;
    font-size: 1.6rem;
    width: 2rem;
    text-align: center;
}

.logout-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    cursor: pointer;
    color: var(--white);
    font-size: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.logout-btn:hover {
    color: #ff5733;
}

/* Animation for profile dropdown */
@keyframes profileDropdown {
    0% {
        opacity: 0;
        transform: translateY(1rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.open-form-btn {
    padding: 10px 20px;
    font-size: 16px;
    background: #45f3ff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

/* Overlay Background */
.overlay_r {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.overlay_r.show {
    display: flex;
}

.box_r {
    background: rgba(47, 61, 78, 0.95);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    margin-top:120px;
    padding: 2rem;
    position: relative;

    overflow-y: auto;
    max-height: 80vh;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 30px rgba(247, 171, 28, 0.3);
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
}

.box_r::-webkit-scrollbar {
    width: 8px;
}

.box_r::-webkit-scrollbar-track {
    background: rgba(47, 61, 78, 0.5);
    border-radius: 10px;
}

.box_r::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
}

.box_r::-webkit-scrollbar-thumb:hover {
    background: #ff9966;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.form_r {
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--main-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--main-color);
}

.form-title {
    flex: 1;
    padding-right: 2rem;
}

.form-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1.9rem;
    color: var(--light-white);
    margin-bottom: 0.5rem;
}

.form-tagline {
    font-size: 1.8rem;
    color: var(--main-color);
    opacity: 0.9;
}

.form-illustration {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(247, 171, 28, 0.1);
    border: 2px solid var(--main-color);
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    color: var(--main-color);
    text-shadow: 0 0 10px rgba(247, 171, 28, 0.5);
    opacity: 0.7;
    animation: float-3d 8s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.element1 {
    top: 15%;
    left: 10%;
    font-size: 2rem;
    animation-duration: 10s;
}

.element2 {
    top: 25%;
    right: 15%;
    font-size: 1.8rem;
    animation-duration: 12s;
    animation-delay: 1s;
}

.element3 {
    bottom: 20%;
    left: 20%;
    font-size: 2rem;
    animation-duration: 9s;
    animation-delay: 2s;
}

.element4 {
    top: 40%;
    right: 25%;
    font-size: 1.8rem;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

@keyframes float-3d {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateY(90deg);
    }
    50% {
        transform: translateY(0) rotateY(180deg);
    }
    75% {
        transform: translateY(20px) rotateY(270deg);
    }
}

.scroll-container_r {
    margin-top: 2rem;
}

.inputBox_r {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(247, 171, 28, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.inputBox_r:hover {
    background: rgba(247, 171, 28, 0.2);
    transform: translateY(-2px);
}

.inputBox_r i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    transition: all 0.3s ease;
}

.inputBox_r input,
.inputBox_r select {
    width: 100%;
    padding: 0.8rem 1.5rem 0.8rem 2.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    outline: none;
}

.ticket-section {
    background: rgba(247, 171, 28, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(247, 171, 28, 0.2);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--main-color);
}

.ticket-header h3 {
    color: var(--main-color);
    font-size: 1.8rem;
}

.ticket-price {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--main-color);
}

.price-number {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.ticket-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--light-white);
    font-size: 1.5rem;
}

.feature-item i {
    color: var(--main-color);
    margin-right: 0.8rem;
}

.regester_now {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff9966 100%);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}

.regester_now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .box_r {
        width: 95%;
        padding: 1.5rem;
    }

    .form-title h2 {
        font-size: 2rem;
    }

    .form-subtitle {
        font-size: 1.5rem;
    }

    .form-tagline {
        font-size: 1.5rem;
    }

    .inputBox_r {
        padding: 1.5rem;
    }

    .ticket-section {
        padding: 1rem;
    }

    .ticket-header h3 {
        font-size: 1.7rem;
    }

    .price-number {
        font-size: 1.7rem;
    }

    .regester_now {
        font-size: 1.2rem;
        border-radius: 50px;
    }
}

/* 3D Animation Container */
#animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    color: var(--main-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    animation: float-3d 8s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.element1 {
    top: 15%;
    left: 10%;
    font-size: 5rem;
    animation-duration: 10s;
}

.element2 {
    top: 25%;
    right: 15%;
    font-size: 4.5rem;
    animation-duration: 12s;
    animation-delay: 1s;
}

.element3 {
    bottom: 20%;
    left: 20%;
    font-size: 4rem;
    animation-duration: 9s;
    animation-delay: 2s;
}

.element4 {
    top: 40%;
    right: 25%;
    font-size: 3.5rem;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.element5 {
    bottom: 30%;
    right: 10%;
    font-size: 4.2rem;
    animation-duration: 13s;
    animation-delay: 0.5s;
}

/* 3D Rotating Cube */
.perspective-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
    width: 200px;
    height: 200px;
    z-index: 1;
}

.rotating-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: var(--white);
    background-color: rgba(247, 171, 28, 0.2);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 20px rgba(247, 171, 28, 0.5);
    backface-visibility: visible;
    opacity: 0.9;
}

.front {
    transform: translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);
}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.left {
    transform: rotateY(-90deg) translateZ(100px);
}

.top {
    transform: rotateX(90deg) translateZ(100px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);
}

@keyframes rotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes float-3d {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateY(90deg);
    }
    50% {
        transform: translateY(0) rotateY(180deg);
    }
    75% {
        transform: translateY(20px) rotateY(270deg);
    }
}

/* Enhanced Registration Form */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-subtitle {
    font-size: 1.6rem;
    color: var(--light-white);
    margin-top: 0.5rem;
}

.glow-text {
    color: var(--main-color);
    text-shadow: 0 0 10px rgba(247, 171, 28, 0.7);
    animation: glow 2s ease-in-out infinite;
}

.ticket-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(247, 171, 28, 0.1);
    border-radius: 5px;
    padding: 1rem;
    margin-top: 2rem;
}

.ticket-label {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
}

.ticket-price {
    display: flex;
    align-items: center;
}

.ticket-price input {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    background: transparent;
    width: auto;
    margin-left: 0.5rem;
}

.ticket-details {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.ticket-feature {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.ticket-feature i {
    color: var(--main-color);
    margin-right: 1rem;
}

.ticket-feature:last-child {
    margin-bottom: 0;
}

.regester_now {
    margin-top: 2rem;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--main-color) 0%, #ff9966 100%);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.regester_now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Countdown Styling */
#countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 0 15px rgba(247, 171, 28, 0.3);
    animation: pulse 2s infinite alternate;
}

.countdown-box span {
    font-size: 4rem;
    color: var(--main-color);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.countdown-box p {
    font-size: 1.6rem;
    color: white;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(247, 171, 28, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(247, 171, 28, 0.6);
    }
}

/* Tickets Section */
.tickets {
    padding: 3rem 9%;
    background-color: var(--bg-color);
}

.tickets .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.tickets .box-container .box {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

.tickets .box-container .box:hover {
    transform: translateY(-10px);
}

.tickets .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--white);
    padding-bottom: 1rem;
}

.tickets .box-container .box .price {
    font-size: 4rem;
    color: var(--main-color);
    padding: 1rem 0;
    font-weight: bold;
}

.tickets .box-container .box .list {
    padding: 1rem 0;
}

.tickets .box-container .box .list p {
    font-size: 1.6rem;
    color: var(--light-white);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tickets .box-container .box .list p i {
    color: var(--main-color);
    padding-right: 0.5rem;
    font-size: 1.8rem;
}

.tickets .box-container .box .list p .fa-times {
    color: #e74c3c;
}

/* Hosts Spotlight Carousel */
.hosts-spotlight-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 2rem auto;
    overflow: hidden;
    padding: 2rem 0;
    /* Ensure container width is controlled for all screen sizes */
    box-sizing: border-box;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--main-color), 0 0 20px var(--main-color);
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--main-color), 0 0 40px var(--main-color);
    }
}

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

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

@keyframes mobileImageFade {
    from {
        opacity: 0.7;
        filter: blur(2px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(var(--main-color-rgb), 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

.hosts-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hosts-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    touch-action: pan-x;
}

.host-card {
    flex: 0 0 100%;
    width: 100%; /* Ensure card takes full width */
    min-width: 100%; /* Prevent card from shrinking */
    max-width: 100%; /* Prevent card from expanding */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(5px);
    border: 2px solid transparent;
    animation: cardEntrance 0.8s ease-out forwards, floatAnimation 6s ease-in-out infinite;
    transform-origin: center bottom;
    background-clip: padding-box;
    height: 500px;
}

.host-card-inner {
    display: flex;
    height: 100%;
}

.host-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--main-color), transparent, var(--main-color));
    z-index: -1;
    border-radius: 15px;
    animation: borderGlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.host-card:hover::before,
.host-card.in-spotlight::before {
    opacity: 1;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.host-card.in-spotlight {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(var(--main-color-rgb), 0.6);
    z-index: 2;
    animation: pulse 2s infinite ease-in-out;
}

.host-image {
    position: relative;
    width: 40%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.host-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shineEffect 2s cubic-bezier(0.19, 1, 0.22, 1) 9s forwards, runningLight 3s ease-in-out 12s infinite;
    filter: blur(3px);
}

.host-card:hover .host-image::after {
    animation: shineEffect 2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards, runningLight 3s ease-in-out 2s infinite;
}

@keyframes runningLight {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    25% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
    50% {
        opacity: 0.5;
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }
    75% {
        opacity: 0.3;
        transform: translateX(50%) translateY(50%) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes shineEffect {
    0% {
        opacity: 0;
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    25% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
        transform: translateX(0%) translateY(0%) rotate(45deg);
    }
    75% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.host-card:hover .host-image {
    transform: perspective(1000px) rotateY(5deg);
}

.host-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(var(--main-color-rgb), 0.2), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.host-card:hover .host-image::before {
    opacity: 1;
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8) grayscale(0.6) contrast(1.1);
    position: relative;
    transform: scale(1.15) translateY(5px);
    animation: imageReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 8s forwards;
}

.host-card:hover .host-image img {
    filter: brightness(1.1) grayscale(0) contrast(1.05);
    transform: scale(1) translateY(0);
    animation: imageReveal 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes imageReveal {
    0% {
        filter: brightness(0.8) grayscale(0.6) contrast(1.1);
        transform: scale(1.15) translateY(5px);
    }
    40% {
        filter: brightness(1.1) grayscale(0.3) contrast(1.05);
        transform: scale(1.08) translateY(2px);
    }
    100% {
        filter: brightness(1.1) grayscale(0) contrast(1.05);
        transform: scale(1) translateY(0);
    }
}

.host-card {
    transform: perspective(1000px) rotateY(0deg) scale(0.95);
    opacity: 0.8;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, 
               cardSlideshow 8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards,
               subtlePulse 3s ease-in-out 12s infinite;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.host-card:hover {
    transform: perspective(1000px) rotateY(10deg) translateZ(30px) scale(1.02);
    opacity: 1;
    box-shadow: 0 20px 50px rgba(var(--main-color-rgb), 0.6);
}

@keyframes cardEntrance {
    0% {
        transform: perspective(1000px) rotateY(-20deg) translateZ(-100px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: perspective(1000px) rotateY(5deg) translateZ(50px) scale(0.9);
        opacity: 0.6;
    }
    100% {
        transform: perspective(1000px) rotateY(0deg) scale(0.95);
        opacity: 0.8;
    }
}

@keyframes cardSlideshow {
    0% {
        transform: perspective(1000px) rotateY(0deg) translateZ(0) scale(0.95);
    }
    20% {
        transform: perspective(1000px) rotateY(8deg) translateZ(30px) scale(0.98);
    }
    40% {
        transform: perspective(1000px) rotateX(3deg) rotateY(-5deg) translateZ(20px) scale(1);
    }
    60% {
        transform: perspective(1000px) rotateX(-2deg) rotateY(3deg) translateZ(40px) scale(0.99);
    }
    80% {
        transform: perspective(1000px) rotateY(5deg) translateZ(10px) scale(0.98);
    }
    100% {
        transform: perspective(1000px) rotateY(0deg) translateZ(0) scale(1);
        opacity: 1;
    }
}

/* Subtle pulse animation is already added to .host-card */

@keyframes subtlePulse {
    0% {
        box-shadow: 0 10px 30px rgba(var(--main-color-rgb), 0.3);
        transform: perspective(1000px) rotateY(0deg) translateZ(0) scale(0.95) translateY(0);
    }
    50% {
        box-shadow: 0 15px 40px rgba(var(--main-color-rgb), 0.5);
        transform: perspective(1000px) rotateY(0deg) translateZ(10px) scale(0.97) translateY(-5px);
    }
    100% {
        box-shadow: 0 10px 30px rgba(var(--main-color-rgb), 0.3);
        transform: perspective(1000px) rotateY(0deg) translateZ(0) scale(0.95) translateY(0);
    }
}

.host-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-details h3 {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-details p {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-card.in-spotlight .host-details {
    opacity: 1;
    transform: translateY(0);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.host-card.in-spotlight .host-details-content {
    position: relative;
    overflow: hidden;
}

.host-card.in-spotlight .host-details h3 {
    opacity: 0;
    transform: translateY(0);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.host-card.in-spotlight .glow-text {
    position: relative;
    animation: glowTextReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes glowTextReveal {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 rgba(var(--main-color-rgb), 0);
        transform: translateY(10px);
    }
    30% {
        opacity: 0.5;
        text-shadow: 0 0 5px rgba(var(--main-color-rgb), 0.3);
        transform: translateY(5px);
    }
    70% {
        opacity: 0.8;
        text-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.7);
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(var(--main-color-rgb), 0.5);
        transform: translateY(0);
    }
}

.host-card.in-spotlight .host-details p {
    opacity: 0;
    transform: translateY(0);
    animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.host-card.in-spotlight .host-details p::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 2px;
    height: 100%;
    background-color: rgba(var(--main-color-rgb), 0.7);
    animation: typingCursor 0.8s steps(1) infinite 0.7s;
}

@keyframes typingCursor {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
        visibility: hidden;
    }
    10% {
        visibility: visible;
        opacity: 0.1;
    }
    50% {
        opacity: 0.7;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
        clip-path: inset(0 100% 0 0);
    }
    30% {
        opacity: 0.5;
        transform: translateY(5px);
        clip-path: inset(0 50% 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

.host-badge, .host-social a {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-card.in-spotlight .host-badge {
    animation: popIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1.0s forwards;
}

.host-card.in-spotlight .host-social a:nth-child(1) {
    animation: popIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

.host-card.in-spotlight .host-social a:nth-child(2) {
    animation: popIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

.host-card.in-spotlight .host-social a:nth-child(3) {
    animation: popIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
}

.host-card:hover .host-badge {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

.host-card:hover .host-social a {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: popIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
}

.host-card:hover .host-social a:nth-child(2) {
    animation-delay: 1.7s !important;
}

.host-card:hover .host-social a:nth-child(3) {
    animation-delay: 1.8s !important;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
        visibility: hidden;
    }
    20% {
        visibility: visible;
        opacity: 0.2;
        transform: scale(0.7) translateY(5px);
    }
    60% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        visibility: visible;
    }
}

@keyframes flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

.host-card.in-spotlight .spotlight-effect,
.host-card:hover .spotlight-effect {
    opacity: 1;
}

.host-details {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(var(--main-color-rgb),0.1));
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.host-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(var(--main-color-rgb), 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: pulseLight 4s infinite alternate;
}

.host-card:hover .host-details::before,
.host-card.in-spotlight .host-details::before {
    opacity: 1;
}

.host-details-content {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.host-card:hover .host-details-content,
.host-card.in-spotlight .host-details-content {
    transform: translateX(0);
    opacity: 1;
}

.host-details-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(var(--main-color-rgb), 0.2) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.host-card:hover .host-details-content::before,
.host-card.in-spotlight .host-details-content::before {
    opacity: 1;
    transform: scale(1.2);
    animation: contentGlow 3s infinite alternate;
}

@keyframes contentGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes pulseLight {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.host-card:hover .host-details {
    transform: translateY(-10px);
}

.host-details::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.8s ease;
}

.host-card:hover .host-details::before {
    width: 100%;
}

.host-details h3 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(var(--main-color-rgb), 0.8);
    position: relative;
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.host-card:hover .host-details h3,
.host-card.in-spotlight .host-details h3 {
    opacity: 1;
    transform: translateY(0);
    animation: titlePulse 3s infinite alternate;
}

@keyframes titlePulse {
    0% {
        text-shadow: 0 0 10px rgba(var(--main-color-rgb), 0.8);
    }
    100% {
        text-shadow: 0 0 20px rgba(var(--main-color-rgb), 1), 0 0 40px rgba(var(--main-color-rgb), 0.5);
    }
}

.host-badge {
    display: inline-block;
    background: var(--main-color);
    color: #000;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.7);
    animation: badgePulse 2s infinite alternate;
}

.host-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(var(--main-color-rgb), 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.7);
    }
}

@keyframes badgeShine {
    0% {
        left: -200%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}

.host-card:hover .host-details h3 {
    transform: translateY(0);
    opacity: 1;
}

.host-details h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--main-color);
    transform: translateX(-50%);
    transition: width 0.5s ease 0.3s;
}

.host-card:hover .host-details h3::after {
    width: 80%;
}

.host-details p {
    color: #ddd;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    position: relative;
}

.host-card:hover .host-details p,
.host-card.in-spotlight .host-details p {
    opacity: 1;
    transform: translateY(0);
}

.host-details p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--main-color);
    transform: scaleY(0);
    transition: transform 0.5s ease 0.3s;
}

.host-card:hover .host-details p::before,
.host-card.in-spotlight .host-details p::before {
    transform: scaleY(1);
}

.host-social {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.host-card:hover .host-social,
.host-card.in-spotlight .host-social {
    opacity: 1;
    transform: translateY(0);
}

.host-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.host-social a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.host-social a:hover::before {
    opacity: 1;
    animation: socialShine 1s forwards;
}

.host-social a:hover {
    background: var(--main-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.7);
}

@keyframes socialShine {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}

/* Carousel Controls */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid var(--main-color);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: var(--main-color);
}

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

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

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dots */
.hosts-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--main-color);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .host-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .mobile-card-view .host-card-inner {
        flex-direction: column;
    }
    .hosts-track{
        gap: 0 !important;
    }
    .mobile-card-view .host-image {
        width: 100%;
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
    
    .mobile-card-view .host-details {
        width: 100%;
        padding: 15px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-card-view .host-details-content {
        padding: 0;
    }
    
    .mobile-card-view .host-details h3,
    .mobile-card-view .host-details p,
    .mobile-card-view .host-social {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-card-view .host-card {
        height: auto;
        animation: mobileCardEntrance 0.5s ease-out forwards;
        transform: none !important;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-card-view .host-image img {
        animation: mobileImageFade 0.8s ease-out forwards;
    }
    
    .mobile-card-view .host-card:active {
        transform: scale(0.98) !important;
    }
    
    .host-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .host-image {
        height: 250px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

/* Footer Styling */
.footer {
    background-color: var(--black);
    padding: 3rem 9%;
    color: var(--light-white);
    height: 400px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-section p i {
    color: var(--main-color);
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--main-color);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
}

/* Glow Text Effect */
.glow-text {
    color: #fff;
    text-shadow: 0 0 10px var(--main-color),
                 0 0 20px var(--main-color),
                 0 0 40px var(--main-color),
                 0 0 80px var(--main-color);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--main-color), 0 0 20px var(--main-color), 0 0 25px var(--main-color), 0 0 30px var(--main-color), 0 0 35px var(--main-color);
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--main-color), 0 0 40px var(--main-color), 0 0 50px var(--main-color), 0 0 60px var(--main-color), 0 0 70px var(--main-color);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 2rem;
    }

    section {
        padding: 2rem;
    }

    .home .content h3 {
        font-size: 4rem;
    }

    #countdown-container {
        flex-wrap: wrap;
    }
}

/* @media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }

    .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: .2s linear;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 300px;
        padding: 1rem 0;
        transition: max-height 0.4s ease-in-out, padding 0.3s ease;
    }

    .navbar a {
        display: block;
        margin: 2rem;
    }

    .home .content h3 {
        font-size: 3.5rem;
    }

    .countdown-box {
        min-width: 100px;
        padding: 15px;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .home .content h3 {
        font-size: 3rem;
    }

    .countdown-box {
        min-width: 80px;
        padding: 10px;
    }

    .countdown-box span {
        font-size: 3rem;
    }
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    /* Navbar Fixes */
    .header .flex {
        padding: 1.5rem;
    }
    
    .header .flex .navbar {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(47, 61, 78, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        display: none;
    }
    
    .header .flex .navbar.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .navbar a {
        margin: 1rem 0;
        font-size: 2rem;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
    }
    
    /* Profile Dropdown Fix */
    .profile-dropdown {
        position: static;
        width: 90%;
        margin: 1rem auto;
        display: none;
    }
    
    .profile-dropdown.show {
        display: block;
    }
    
    /* Footer Fixes */
    footer {
        padding: 3rem 2rem;
    }
    
    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .header .flex .logo img {
        height: 4.5rem;
    }
    
    #menu-btn {
        font-size: 2.2rem;
    }
    
    .profile-pic {
        font-size: 2.2rem;
    }
    
    .profile-dropdown {
        width: 220px;
    }
    
    
    .footer-section h3 {
        font-size: 2.2rem;
    }
    
    .footer-section p {
        font-size: 1.6rem;
    }
    
    .social-icons a {
        height: 3.5rem;
        width: 3.5rem;
        line-height: 3.5rem;
        font-size: 1.6rem;
    }
    
    .animated-text {
        font-size: 6rem;
    }
} */

/* Floating Particles Animation */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.6;
    animation: particleFloat 6s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(100px, 0) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translate(50px, 30px) scale(1.2);
        opacity: 0.8;
    }
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: -1s; }
.particle:nth-child(3) { left: 50%; top: 50%; animation-delay: -2s; }
.particle:nth-child(4) { left: 80%; top: 30%; animation-delay: -3s; }
.particle:nth-child(5) { left: 90%; top: 70%; animation-delay: -4s; }

.particle1 {
    top: 20%;
    left: 10%;
    width: 15px;
    height: 15px;
    animation-duration: 25s;
}

.particle2 {
    top: 70%;
    left: 20%;
    width: 12px;
    height: 12px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.particle3 {
    top: 40%;
    left: 70%;
    width: 18px;
    height: 18px;
    animation-duration: 20s;
    animation-delay: 4s;
}

.particle4 {
    top: 80%;
    left: 80%;
    width: 10px;
    height: 10px;
    animation-duration: 22s;
    animation-delay: 1s;
}

.particle5 {
    top: 30%;
    left: 50%;
    width: 14px;
    height: 14px;
    animation-duration: 19s;
    animation-delay: 3s;
}

.animated-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.float-animation-delay-3 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.3s;
}

.float-animation-delay-4 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.6s;
}

/* Additional animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--main-color);
    }
    50% {
        box-shadow: 0 0 20px var(--main-color), 0 0 30px var(--main-color);
    }
}

/* Close Icon Styling */
.close-icon-container {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.close-icon {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(247, 171, 28, 0.2);
    transition: all 0.3s ease;
}

.close-icon:hover {
    background-color: rgba(247, 171, 28, 0.4);
    transform: rotate(90deg);
}

.close-icon i {
    font-size: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.close-icon:hover i {
    color: var(--main-color);
}

/* Animated Text Styles */
.animated-text-container {
    position: relative;
    margin: 30px 0 40px;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-text {
    font-family: 'Bangers', cursive;
    font-size: 9rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #f7ab1c, #ff4e50, #f9d423, #f7ab1c);
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 5s linear infinite, float 6s ease-in-out infinite;
    /* text-shadow: 0 0 20px rgba(247, 171, 28, 0.3), 
                 0 0 40px rgba(247, 171, 28, 0.2), 
                 0 0 60px rgba(247, 171, 28, 0.1); */
    letter-spacing: 5px;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.animated-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, 
                rgba(247, 171, 28, 0) 0%, 
                rgba(247, 171, 28, 0.5) 50%, 
                rgba(247, 171, 28, 0) 100%); */
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    z-index: -1;
}

.animated-text::after {
    content: 'Mohana Mantra 2025';
    position: absolute;
    top: 3px;
    left: 3px;
    color: rgba(255, 255, 255, 0.1);
    z-index: -2;
}

/* Center the Let's Go button */
.animated-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#lets-go-btn {
    font-size: 1.5rem;
    padding: 15px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#lets-go-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 171, 28, 0.4);
}

#lets-go-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

#lets-go-btn:hover::before {
    left: 100%;
}

/* DJ Text Effect Styles */
.animated-text-container {
    position: relative;
    margin: 30px 0 40px;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-text {
    font-family: 'Bangers', cursive;
    font-size: 9rem;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 5px;
    text-shadow: 0 0 10px #ff00de, 
                 0 0 20px #ff00de, 
                 0 0 30px #ff00de,
                 0 0 40px #ff00de;
    animation: dj-pulse 1.5s infinite alternate, dj-flicker 6s infinite;
}

@keyframes dj-pulse {
    0% {
        text-shadow: 0 0 10px #ff00de, 
                    0 0 20px #ff00de, 
                    0 0 30px #ff00de, 
                    0 0 40px #ff00de;
    }
    50% {
        text-shadow: 0 0 15px #0062ff, 
                    0 0 25px #0062ff, 
                    0 0 35px #0062ff, 
                    0 0 45px #0062ff;
    }
    100% {
        text-shadow: 0 0 20px #00ff66, 
                    0 0 30px #00ff66, 
                    0 0 40px #00ff66, 
                    0 0 50px #00ff66;
    }
}

@keyframes dj-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 0.99;
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
    }
}

/* Media Queries for Animated Text */
@media (max-width: 768px) {
    .animated-text {
        font-size: 4rem;
    }
    
    .animated-text-container {
        height: 80px;
    }
    
    #lets-go-btn {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 3rem;
    }
    
    .animated-text-container {
        height: 60px;
    }
    
    #lets-go-btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
}
