/* ===== VIDIDEE.HTML SPECIFIC STYLES ===== */
/* Video-Ideen-Seite: Idea-Cards, Reactions, Admin, etc. */

/* ===== HEADER TITLE - Animated Dual Color ===== */
.header-title {
    background: linear-gradient(135deg, var(--color-fortnite-blue), var(--color-fortnite-purple), var(--color-minecraft-green), var(--color-minecraft-lime));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 4s ease infinite;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== GLOWING ICON - Dual Color ===== */
.glow-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 40px rgba(93, 186, 71, 0.4));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 40px rgba(93, 186, 71, 0.4));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(93, 186, 71, 0.8)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.6));
    }
}

/* ===== IDEA CARD - Dual Color ===== */
.idea-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(93, 186, 71, 0.05));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardSlideIn 0.6s ease-out backwards;
    position: relative;
    overflow: hidden;
}

.idea-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), rgba(93, 186, 71, 0.1), transparent);
    transition: left 0.6s ease;
}

.idea-card:hover::before {
    left: 100%;
}

.idea-card:hover {
    border-color: rgba(93, 186, 71, 0.5);
    box-shadow:
        0 15px 40px rgba(0, 212, 255, 0.15),
        0 0 0 1px rgba(93, 186, 71, 0.3);
    transform: translateY(-5px);
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Staggered animation delays */
.idea-card:nth-child(1) {
    animation-delay: 0.1s;
}

.idea-card:nth-child(2) {
    animation-delay: 0.15s;
}

.idea-card:nth-child(3) {
    animation-delay: 0.2s;
}

.idea-card:nth-child(4) {
    animation-delay: 0.25s;
}

.idea-card:nth-child(5) {
    animation-delay: 0.3s;
}

.idea-card:nth-child(6) {
    animation-delay: 0.35s;
}

/* ===== REACTION BUTTONS - Dual Color ===== */
.reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.85rem;
}

.reaction-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(93, 186, 71, 0.15));
    border-color: var(--color-fortnite-blue);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.reaction-btn.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(93, 186, 71, 0.2));
    border-color: var(--color-minecraft-green);
}

.reaction-btn .count {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(93, 186, 71, 0.3));
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.75rem;
}

/* ===== INPUT STYLES - Dual Color ===== */
.neon-input {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.neon-input:focus {
    outline: none;
    border-color: var(--color-minecraft-green);
    box-shadow:
        0 0 0 3px rgba(93, 186, 71, 0.1),
        0 0 20px rgba(0, 212, 255, 0.2);
}

.neon-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== ADMIN BADGE - Dual Color ===== */
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--color-fortnite-blue), var(--color-minecraft-green));
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(93, 186, 71, 0.5);
    }
}

.admin-badge img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* ===== ADMIN COMMENT - Dual Color ===== */
.admin-comment {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(93, 186, 71, 0.05));
    border-left: 3px solid var(--color-minecraft-green);
    padding: 12px;
    margin-top: 12px;
    border-radius: 10px;
    position: relative;
}

.admin-comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-comment-header img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--color-minecraft-green);
}

.admin-comment-header span {
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--color-fortnite-blue), var(--color-minecraft-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== TOAST - Dual Color ===== */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(13, 17, 23, 0.95);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--color-fortnite-blue), var(--color-minecraft-green)) 1;
    border-radius: 14px;
    padding: 14px 24px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 212, 255, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===== FIXED BOTTOM FORM - Dual Color ===== */
.fixed-form-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--color-bg-dark) 0%, var(--color-bg-dark) 85%, transparent 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 50;
    padding: 16px 0;
}

/* ===== LOADING SPINNER - Dual Color ===== */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--color-fortnite-blue);
    border-right: 3px solid var(--color-minecraft-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 40px 16px;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== IDEAS GRID - Mobile Optimized ===== */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 200px;
    padding-bottom: 16px;
}

/* ===== DELETE BUTTON ===== */
.btn-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
    transform: scale(1.05);
}

/* ===== SECONDARY BUTTON ===== */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ===== COUNTDOWN TIMER - Dual Color ===== */
.countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(93, 186, 71, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.8rem;
}

.countdown.ready {
    border-color: var(--color-minecraft-green);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(93, 186, 71, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(93, 186, 71, 0);
    }
}

/* ===== FLOATING LIGHTBULBS ===== */
.lightbulb {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    animation: floatBulb 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBulb {
    0% {
        opacity: 0;
        transform: translateY(80px) rotate(0deg);
    }

    20% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateY(-250px) rotate(360deg);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .ideas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 240px;
    }

    .glass-card {
        padding: 16px;
        margin: 0 4px;
        border-radius: 16px;
    }

    .idea-card {
        padding: 16px;
        border-radius: 14px;
    }

    .neon-button {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .header-title {
        font-size: 2rem !important;
    }

    .glow-icon {
        font-size: 2.5rem;
    }

    .neon-input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .reaction-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        gap: 4px;
    }

    .reaction-btn .count {
        padding: 1px 4px;
        font-size: 0.7rem;
    }

    .countdown {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .fixed-form-container {
        padding: 12px 0;
    }

    .admin-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .admin-badge img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .ideas-grid {
        margin-bottom: 280px;
    }

    .header-title {
        font-size: 1.75rem !important;
    }

    .glow-icon {
        font-size: 2rem;
    }

    .glass-card {
        padding: 14px;
    }

    .idea-card {
        padding: 14px;
    }

    .btn-secondary {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}