* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a1a;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center bottom, #1a0a2e 0%, #0a0a1a 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 80, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 200, 255, 0.08) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-content h1 .tiktok {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .stars {
    color: #ffd700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.next-show-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0050, #ff6b35);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 80, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px 5px rgba(255, 0, 80, 0.2); }
}

.hero-poster {
    max-width: 380px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.3), 0 0 80px rgba(255, 215, 0, 0.1);
    margin: 2rem auto;
    transition: transform 0.3s ease;
}

.hero-poster:hover {
    transform: scale(1.03) rotate(-1deg);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00f2ea, #00c4ff);
    color: #000;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    background: linear-gradient(135deg, #ff0050, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
#about {
    background: linear-gradient(180deg, #0a0a1a 0%, #120a20 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 80, 0.3);
}

.about-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffd700;
}

.about-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Talent Categories */
#talents {
    background: #120a20;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.talent-card {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.talent-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.2), rgba(255, 215, 0, 0.1));
}

.talent-card .emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.talent-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.talent-card p {
    color: #999;
    font-size: 0.9rem;
}

/* Judges Section */
#judges {
    background: linear-gradient(180deg, #120a20 0%, #0a0a1a 100%);
}

.judges-intro {
    text-align: center;
    color: #aaa;
    max-width: 600px;
    margin: -1.5rem auto 2.5rem;
    line-height: 1.6;
}

.host-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 0, 80, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.host-card .role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff0050;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.host-card h3 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.host-card p {
    color: #ccc;
}

.judge-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.judge-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.judge-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #00f2ea;
}

.judge-box .number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.judge-box p {
    color: #999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* How It Works */
#how-it-works {
    background: #0a0a1a;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0050, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a1a 70%);
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: #aaa;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tiktok-handle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00f2ea;
    margin-top: 1.5rem;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    font-weight: 900;
    font-size: 1.3rem;
}

.nav-logo .tt { color: #00f2ea; }
.nav-logo .st { color: #ffd700; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.85rem;
}

/* TikTok Card Component */
.tiktok-cards-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0a0a1a 0%, #120a20 100%);
}

.tiktok-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tiktok-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tiktok-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 234, 0.3);
    box-shadow: 0 10px 40px rgba(0, 242, 234, 0.1);
}

.tiktok-card .card-avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 0, 80, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.tiktok-card .card-avatar-placeholder {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    color: #fff;
}

.tiktok-card .card-name {
    font-weight: 700;
    color: #fff;
}

.tiktok-card .card-handle {
    color: #00f2ea;
    font-weight: 500;
}

.tiktok-card .card-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff0050;
    font-weight: 700;
}

.tiktok-card .card-desc {
    color: #999;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Small Card */
.tiktok-card.card-small {
    width: 180px;
    padding: 1.2rem 1rem;
    gap: 0.5rem;
}

.tiktok-card.card-small .card-avatar,
.tiktok-card.card-small .card-avatar-placeholder {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.tiktok-card.card-small .card-name {
    font-size: 0.9rem;
}

.tiktok-card.card-small .card-handle {
    font-size: 0.75rem;
}

.tiktok-card.card-small .card-desc {
    display: none;
}

/* Medium Card */
.tiktok-card.card-medium {
    width: 240px;
    padding: 1.8rem 1.5rem;
    gap: 0.6rem;
}

.tiktok-card.card-medium .card-avatar,
.tiktok-card.card-medium .card-avatar-placeholder {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.tiktok-card.card-medium .card-name {
    font-size: 1.1rem;
}

.tiktok-card.card-medium .card-handle {
    font-size: 0.85rem;
}

.tiktok-card.card-medium .card-desc {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
}

/* Large Card */
.tiktok-card.card-large {
    width: 320px;
    padding: 2.5rem 2rem;
    gap: 0.8rem;
}

.tiktok-card.card-large .card-avatar,
.tiktok-card.card-large .card-avatar-placeholder {
    width: 110px;
    height: 110px;
    font-size: 2.5rem;
}

.tiktok-card.card-large .card-name {
    font-size: 1.4rem;
}

.tiktok-card.card-large .card-handle {
    font-size: 1rem;
}

.tiktok-card.card-large .card-desc {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.95);
        padding: 1rem 2rem;
        gap: 1rem;
    }
    .nav-toggle { display: block; }
    .judge-info { grid-template-columns: 1fr; }
}

/* Stars animation */
.star-particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: #ffd700;
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle 3s ease-in-out infinite;
}

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