/* Global Styles */
:root {
    --primary-color: #ff3c5a;
    --secondary-color: #2185d5;
    --accent-color: #9933ff;
    --dark-color: #111;
    --darker-color: #0a0a0a;
    --light-color: #f4f4f4;
    --text-color: #fff;
    --gray-color: #333;
    --gray-darker: #222;
    --gray-lighter: #444;
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --glow: 0 0 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glitch {
    0% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(-20px, -10px);
    }
    20% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(20px, 10px);
    }
    40% {
        clip-path: inset(43% 0 1% 0);
        transform: translate(-20px, -10px);
    }
    60% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(20px, 10px);
    }
    80% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(-20px, -10px);
    }
    100% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(20px, 10px);
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
    cursor: none;
}

.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 9998;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color var(--transition-medium);
    cursor: none;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    animation: revealText 1s ease forwards;
}

@keyframes revealText {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.accent-line {
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 3px;
}

/* Header & Navigation */
header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-accent {
    font-size: 0.6em;
    color: var(--secondary-color);
    display: inline-block;
    transform: translateY(-5px);
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    margin-left: 2.5rem;
}

.nav-link {
    font-weight: 700;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav {
    background-color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-nav:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 60, 90, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 150;
}

.mobile-menu-button span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles (for JavaScript) */
.menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.menu.active li {
    margin: 1.5rem 0;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

.menu.active li:nth-child(1) { animation-delay: 0.1s; }
.menu.active li:nth-child(2) { animation-delay: 0.2s; }
.menu.active li:nth-child(3) { animation-delay: 0.3s; }
.menu.active li:nth-child(4) { animation-delay: 0.4s; }

.menu.active a {
    font-size: 1.8rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu.active a:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* When mobile menu is open */
.mobile-menu-button.active span:first-child {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-color);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.9));
    z-index: -1;
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="rgba(17, 17, 17, 0.1)" /></svg>');
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 7rem;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    position: relative;
}

.hero h1 span {
    color: var(--primary-color);
    display: block;
    font-size: 0.8em;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--primary-color);
    z-index: -1;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    animation-play-state: paused;
}

.glitch::after {
    color: var(--secondary-color);
    z-index: -2;
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    animation-play-state: paused;
}

.glitch:hover::before,
.glitch:hover::after {
    animation-play-state: running;
}

.subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 3s infinite;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 1.2rem 3rem;
    font-weight: 800;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 60, 90, 0.5);
    color: var(--text-color);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s 1s forwards;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    position: absolute;
    width: 6px;
    height: 12px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 3px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

/* Challenge Section */
.challenge {
    background-color: var(--gray-darker);
    position: relative;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 60, 90, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(33, 133, 213, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.challenge-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.step {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 60, 90, 0.1), rgba(33, 133, 213, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.2) translateY(-10px);
    opacity: 0.5;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.2);
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.step h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.step:hover h3::after {
    width: 100%;
}

.step p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.featured-videos {
    margin-top: 5rem;
}

.featured-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
    background-color: rgba(0, 0, 0, 0.5);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 60, 90, 0.2), rgba(33, 133, 213, 0.2));
    z-index: 1;
}

.placeholder-icon {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: float 3s infinite ease-in-out;
}

.placeholder-text {
    color: var(--text-color);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.video-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-title {
    font-weight: 700;
    color: var(--text-color);
}

.video-views {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.video-views i {
    margin-right: 5px;
}

/* Stats Counter Section */
.stats-counter {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="rgba(255, 255, 255, 0.05)" /></svg>');
    background-size: cover;
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    top: 0;
    right: -20px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

/* Lyrics Section */
.lyrics {
    background-color: var(--dark-color);
    position: relative;
}

.lyrics-bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path d="M0,100 C300,150 600,50 1200,100 L1200,200 L0,200 Z" fill="rgba(51, 51, 51, 0.5)" /></svg>');
    background-size: cover;
    animation: wave 15s infinite linear;
    opacity: 0.3;
    pointer-events: none;
}

.lyrics-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.play-button-container {
    text-align: center;
    margin-bottom: 3rem;
}

.play-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover::before {
    opacity: 1;
}

.play-button i {
    margin-right: 10px;
}

.lyrics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lyrics-text {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lyrics-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 60, 90, 0.1), rgba(33, 133, 213, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lyrics-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.lyrics-text:hover::before {
    opacity: 1;
}

.lyrics-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.lyrics-text h3:first-child {
    margin-top: 0;
}

.lyrics-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.lyrics-text:hover h3::after {
    width: 100%;
}

.lyrics-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Prizes Section */
.prizes {
    background-color: var(--gray-color);
    position: relative;
}

.prizes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 60, 90, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(33, 133, 213, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.prize {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.prize:hover {
    transform: translateY(-15px);
    z-index: 2;
}

.prize-rank {
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 60, 90, 0.3);
    transition: transform 0.4s ease;
}

.prize:hover .prize-rank {
    transform: scale(1.2);
}

.prize-content {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.4s ease;
}

.prize:hover .prize-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.prize-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.prize:nth-child(1) .prize-badge {
    color: gold;
}

.prize:nth-child(2) .prize-badge {
    color: silver;
}

.prize:nth-child(3) .prize-badge {
    color: #cd7f32; /* bronze */
}

.prize-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 60, 90, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.prize:hover .prize-glow {
    opacity: 1;
}

.prize-content h3 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
}

.prize-highlight {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.prize-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.bonus-prize {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.bonus-badge {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bonus-prize p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Submission Section */
.submission {
    background-color: var(--gray-darker);
    position: relative;
}

.submission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 133, 213, 0.05), rgba(255, 60, 90, 0.05));
    pointer-events: none;
}

.submission-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 60, 90, 0.1) 0%, transparent 15%),
        radial-gradient(circle at 90% 90%, rgba(33, 133, 213, 0.1) 0%, transparent 15%),
        radial-gradient(circle at 50% 50%, rgba(153, 51, 255, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

.submission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.submission-form {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.textarea-wrapper i {
    top: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 45px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.submit-button:hover::before {
    opacity: 1;
}

.submit-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

.submission-info {
    position: relative;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.info-icon {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-card h3 {
    margin-bottom: 1.5rem;
}

.info-card ol {
    padding-left: 20px;
    margin-bottom: 2rem;
}

.info-card ol li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.deadline {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.deadline-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.deadline-date {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--darker-color);
    padding: 6rem 0 4rem;
    position: relative;
}

.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 100" xmlns="http://www.w3.org/2000/svg"><path d="M0,50 C300,100 600,0 1200,50 L1200,100 L0,100 Z" fill="rgba(10, 10, 10, 1)" /></svg>');
    background-size: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-logo span {
    font-size: 0.6em;
    color: var(--secondary-color);
    display: block;
}

.footer-slogan {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-heading {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: color 0.3s ease, transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.made-with {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.made-with i {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.notification.active {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background: linear-gradient(45deg, #4CAF50, #A5D6A7);
}

.notification.error {
    background: linear-gradient(45deg, #F44336, #EF9A9A);
}

.notification.info {
    background: linear-gradient(45deg, #2196F3, #90CAF9);
}

/* Media Queries */
@media (max-width: 1200px) {
    h1 {
        font-size: 5rem;
    }
    
    .tiktok-preview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .tiktok-text-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .tiktok-step {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .submission-container {
        grid-template-columns: 1fr;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    
    h1 span {
        font-size: 0.7em;
    }

    h2 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }

    .menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .lyrics-content, .prizes-grid, .challenge-steps, .stats-grid, .video-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }

    .tiktok-sound-button {
        width: 100%;
        margin-top: 10px;
    }
    
    .tiktok-text-content h2 {
        font-size: 2.2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .tiktok-preview-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .phone-mockup {
        width: 80%;
        max-width: 300px;
        margin-bottom: 2rem;
    }

    .tiktok-text-content {
        width: 100%;
        padding-left: 0;
    }

    .tiktok-sound-button {
        margin: 1rem auto;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }
    
    h1 span {
        font-size: 0.7em;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .prize {
        flex-direction: column;
    }
    
    .prize-rank {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .step, .prize-content, .lyrics-text, .submission-form, .info-card {
        padding: 2rem;
    }
    
    .tiktok-text-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

/* TikTok Preview Section */
.tiktok-preview {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.tiktok-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(238, 29, 82, 0.1), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.tiktok-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 550px;
    background-color: #000;
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 8px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.tiktok-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tiktok-header {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tiktok-logo {
    font-size: 1.5rem;
    color: #fff;
}

.tiktok-text {
    font-weight: 700;
    color: #fff;
}

.tiktok-video {
    flex-grow: 1;
    background: linear-gradient(45deg, #111, #222);
    position: relative;
    overflow: hidden;
}

.tiktok-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="rgba(255, 255, 255, 0.03)" /></svg>');
    animation: glitch 10s infinite linear;
    opacity: 0.3;
}

.tiktok-overlay {
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
}

.tiktok-username {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.tiktok-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tiktok-song {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tiktok-disc {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 3s infinite linear;
}

.tiktok-song-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.tiktok-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 15px;
    bottom: 80px;
    gap: 20px;
}

.tiktok-action {
    text-align: center;
    color: #fff;
}

.tiktok-action i {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.tiktok-action span {
    display: block;
    font-size: 0.8rem;
}

.tiktok-text-content {
    color: var(--text-color);
}

.tiktok-text-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tiktok-text-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

.tiktok-text-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.tiktok-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tiktok-step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.tiktok-step-text {
    font-size: 1.1rem;
}

.tiktok-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.tiktok-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
}

.tiktok-cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.tiktok-cta-button:hover i {
    transform: translateX(5px);
}

.tiktok-sound-button {
    display: inline-block;
    background: linear-gradient(135deg, #69C9D0 0%, #EE1D52 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(238, 29, 82, 0.3);
}

.tiktok-sound-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(238, 29, 82, 0.4);
}

.tiktok-sound-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tiktok-sound-button:hover i {
    transform: scale(1.2);
}