/* -------------------------------------------------------------
   YENİ PARTİ AFTER PARTİ - CSS STYLESHEET
   Bouncing Dancing Icons, Disco Strobe Lights & Entertainment Party Aesthetics
------------------------------------------------------------- */

:root {
    --bg-dark: #0b0c10;
    --bg-card: rgba(22, 27, 34, 0.75);
    --primary: #ff0055;
    --primary-glow: rgba(255, 0, 85, 0.6);
    --secondary: #00f0ff;
    --accent: #ffe600;
    --text: #f0f6fc;
    --text-muted: #8b949e;
    --font-heading: 'Cabinet Grotesk', 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #090a0f;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

/* Ticker Bar */
.ticker-wrap {
    width: 100%;
    background: linear-gradient(90deg, #ff0055, #7928ca, #00f0ff);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
    z-index: 1000;
}

.ticker {
    display: flex;
    width: 200%;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    padding: 0 30px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon-dancer {
    font-size: 2rem;
    animation: bounce 0.8s infinite alternate ease-in-out;
}

@keyframes bounce {
    0% { transform: translateY(0) rotate(-15deg) scale(1); }
    100% { transform: translateY(-12px) rotate(15deg) scale(1.2); }
}

.badge-after {
    background: linear-gradient(45deg, #ff0055, #ffe600);
    color: #000;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    vertical-align: middle;
    animation: pulse 1.5s infinite alternate;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--secondary);
}

.sound-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.sound-btn:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 15px var(--secondary);
}

/* DANCING & JUMPING ICONS ANIMATED SPRITE SYSTEM */
.hero-mascot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.hero-dancer-trio {
    display: flex;
    gap: 30px;
    align-items: center;
}

.dancer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.dancer-avatar {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px var(--primary));
}

.main-star {
    font-size: 5.5rem;
    filter: drop-shadow(0 0 25px var(--accent));
}

.dancer-accessory-wig {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.dancer-accessory-glasses {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
}

.dance-anim-1 {
    animation: shuffleMove 0.45s infinite alternate ease-in-out;
}
.dance-anim-main {
    animation: mainStarJump 0.35s infinite alternate ease-in-out;
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.4);
}
.dance-anim-3 {
    animation: breakdanceMove 0.5s infinite alternate ease-in-out;
}

@keyframes shuffleMove {
    0% { transform: translateY(0) rotate(-15deg); }
    100% { transform: translateY(-18px) rotate(15deg); }
}

@keyframes mainStarJump {
    0% { transform: translateY(0) scale(1) rotate(-8deg); }
    100% { transform: translateY(-30px) scale(1.15) rotate(8deg); }
}

@keyframes breakdanceMove {
    0% { transform: rotate(-10deg) scale(1); }
    100% { transform: rotate(25deg) scale(1.15); }
}

.dancer-label {
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent);
}

/* Floating / Jumping Dancers on Page */
.floating-dancer {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    font-size: 3.2rem;
    filter: drop-shadow(0 0 15px var(--secondary));
    animation: dancerFloatAnim 0.3s infinite alternate ease-in-out;
}

@keyframes dancerFloatAnim {
    0% { transform: scale(1) rotate(-12deg) translateY(0); }
    100% { transform: scale(1.2) rotate(12deg) translateY(-15px); }
}

.floating-dancer:hover {
    filter: drop-shadow(0 0 25px var(--accent));
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,240,255,0.15) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: rotateBg 12s linear infinite;
    z-index: 1;
}

@keyframes rotateBg {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.3); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 230, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #ff0055, #ffe600, #00f0ff, #ff0055);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease infinite;
}

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

.glow-anim {
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    padding: 15px 32px;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(45deg, #ff0055, #ff5500);
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 0, 85, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Alert Banner */
.bug-alert-banner {
    background: rgba(255, 230, 0, 0.1);
    border-y: 1px solid rgba(255, 230, 0, 0.3);
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
    color: var(--accent);
}

/* Section styling */
.section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.glass {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 0, 85, 0.25);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.card-btn {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.card-btn:hover {
    background: var(--secondary);
    color: #000;
}

/* Youth Stage Section */
.bocek-stage-section {
    background: linear-gradient(180deg, #0b0c10 0%, #150a21 100%);
}

.stage-header {
    text-align: center;
    margin-bottom: 30px;
}

.stage-box {
    background: #000;
    border: 3px solid var(--primary);
    border-radius: 24px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.3);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stage-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,0,85,0.3), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(0,240,255,0.3), transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(255,230,0,0.3), transparent 40%);
    pointer-events: none;
    animation: discoPulse 2s infinite alternate;
}

@keyframes discoPulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.dj-booth {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
}

.dancing-bugs-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.stage-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-party {
    background: var(--accent);
    color: #000;
    font-weight: 900;
    border-radius: 30px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-party:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px var(--accent);
}

/* Customizer Section */
.customizer-box {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
}

.customizer-preview {
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed var(--secondary);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.custom-dancer-target {
    position: relative;
    font-size: 5.5rem;
    filter: drop-shadow(0 0 20px var(--primary));
}

.dancer-wig {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
}

.dancer-glasses {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

.customizer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.opt-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.opt-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Ballot Game */
.ballot-paper {
    background: #fdfbf7;
    color: #111;
    max-width: 750px;
    margin: 40px auto 20px auto;
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 4px dashed #333;
}

.ballot-party {
    border: 2px solid #333;
    padding: 20px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: 220px;
}

.yeni-parti-after-party {
    border: 3px solid var(--primary);
    background: rgba(255, 0, 85, 0.05);
}

.ballot-logo {
    font-size: 2.5rem;
}

.glow-rotate {
    animation: rotateIcon 4s infinite linear;
}

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

.stamp-zone {
    width: 100%;
    height: 60px;
    border: 2px dashed #888;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stamp-zone:hover {
    border-color: var(--primary);
    background: rgba(255,0,85,0.1);
}

.stamp-zone.disabled {
    cursor: not-allowed;
    background: #eee;
    color: #999;
}

.evet-stamp {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px double #d32f2f;
    color: #d32f2f;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg) scale(1.3);
    animation: stampAnim 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

@keyframes stampAnim {
    0% { transform: scale(3) rotate(20deg); opacity: 0; }
    100% { transform: scale(1.3) rotate(-15deg); opacity: 1; }
}

.vote-success {
    background: var(--primary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 800;
    display: inline-block;
    margin-top: 20px;
    animation: popIn 0.4s ease;
}

.hidden {
    display: none;
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Badge Section */
.badge-creator-box {
    max-width: 600px;
    margin: 30px auto;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.input-group input, .input-group select {
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.badge-card-result {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.badge-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.badge-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-avatar {
    font-size: 3rem;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.badge-info h3 {
    font-size: 1.4rem;
    color: #fff;
}

.badge-info p {
    color: var(--accent);
    font-weight: 700;
}

.badge-code {
    font-family: monospace;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin-top: 5px;
}

.badge-footer {
    border-top: 1px dashed rgba(255,255,255,0.2);
    margin-top: 15px;
    padding-top: 10px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
}

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Footer */
.footer {
    background: #050608;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}

.disclaimer-box {
    background: rgba(255, 0, 85, 0.08);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 15px;
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* Disco Flash Mode */
body.disco-active {
    animation: discoFlash 0.3s infinite alternate;
}

@keyframes discoFlash {
    0% { background-color: #1a001a; }
    50% { background-color: #001a1a; }
    100% { background-color: #1a1a00; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.3rem; }
    .nav-links { display: none; }
    .hero-dancer-trio { flex-direction: column; }
    .ballot-paper { grid-template-columns: 1fr; }
}
