/* Import Special Fonts for that Competition Vibe */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;700&family=Poppins:wght@300;400;600;800&display=swap');

:root { 
    --red: #e73c7e; 
    --gold: #ffcc00; 
    --dark: #121212; 
    --glass: rgba(255, 255, 255, 0.75); 
    --glass-border: rgba(255, 255, 255, 0.5);
    --grad: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
}

/* 1. Animated Background & Orbs */
body { 
    font-family: 'Poppins', sans-serif; 
    margin: 0; 
    background-color: #f0f4f8;
    min-height: 100vh; 
    overflow-x: hidden;
    position: relative;
}

.ambient-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1;
    animation: orbit 20s infinite alternate ease-in-out;
}
.orb-1 { width: 400px; height: 400px; background: rgba(231, 60, 126, 0.4); top: -10%; left: -10%; }
.orb-2 { width: 500px; height: 500px; background: rgba(35, 166, 213, 0.4); bottom: -20%; right: -10%; }

@keyframes orbit {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 10vh) scale(1.2); }
}

/* 2. EXTREME SCHEDULE HEADINGS */
.schedule-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    letter-spacing: 2px;
    color: var(--dark);
    margin: 0;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
}

.main-title .highlight {
    display: block;
    font-size: 5rem; /* Massive Font Size */
    color: var(--red);
    text-shadow: 3px 3px 0px var(--gold); /* Gold Shadow for Vibe */
    filter: drop-shadow(0 0 10px rgba(231, 60, 126, 0.3));
}

.title-underline {
    width: 200px;
    height: 8px;
    background: var(--grad);
    margin: 20px auto;
    border-radius: 50px;
}

/* 3. ENHANCED SCHEDULE CARDS */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.schedule-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 2px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.schedule-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(231, 60, 126, 0.2);
}

.stage-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.stage-date {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    background: var(--red);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(231, 60, 126, 0.4);
    margin: 10px 0;
}

/* 4. Glass Container (Entrance) */
.container { 
    max-width: 1150px; margin: 40px auto; padding: 40px;
    background: var(--glass); border-radius: 24px;
    backdrop-filter: blur(20px); border: 1px solid var(--glass-border);
    animation: fadeInUp 1s ease forwards;
}

/* 5. Navigation & Buttons */
nav { background: var(--dark); padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top:0; z-index:1000; }
nav a { color: white; text-decoration: none; margin-left: 20px; font-weight: 600; transition: 0.3s; }
nav a:hover { color: var(--gold); transform: scale(1.1); }

.btn { 
    background: var(--grad); background-size: 300% 300%; animation: gradientShift 4s ease infinite;
    color: white; padding: 14px 28px; border: none; border-radius: 50px; font-weight: 700;
    text-transform: uppercase; text-decoration: none; display: inline-block; transition: 0.4s;
}
.btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(35, 166, 213, 0.4); }

/* 6. Forms */
form { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.form-group { display: flex; flex-direction: column; text-align: left; }
input, select { 
    width: 100%; box-sizing: border-box; padding: 16px; border-radius: 12px; border: 2px solid transparent;
    transition: 0.3s; background: rgba(255,255,255,0.9);
}
input:focus { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(231, 60, 126, 0.2); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Float Animation for Cards */
.floating { animation: floatingAction 4s ease-in-out infinite; }
@keyframes floatingAction { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }