:root {
    --primary-color: #FFD700;
    --accent-color: #8A2BE2;
    --background-color: #100c14;
    --text-color: #ffffff;
    --mobile-breakpoint: 768px;
    --tablet-breakpoint: 1024px;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main {
    background-color: var(--background-color);
    position: relative;
    flex-grow: 1;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #0A0A0A;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

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

.nav-logo-text {
    color: #fff36f;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo img {
    height: 30px;
}

/* Desktop Navigation */
.nav-center {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

.nav-center a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin: 0 2.5rem;
}

.nav-center a:hover,
.nav-center a.active {
    border-bottom: 2px solid var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #0A0A0A;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
}

.mobile-login-link {
    background-color: var(--primary-color) !important;
    color: #111 !important;
    margin: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.mobile-login-link:hover {
    background-color: #e6c200 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.mobile-settings-link {
    background-color: rgba(255, 215, 0, 0.1) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.mobile-settings-link:hover {
    background-color: rgba(255, 215, 0, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    opacity: 1;
    min-width: 100%;
    min-height: 100%;
    background: #100c14;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-top: -10vh;
    padding: 2.5rem;
    border-radius: 24px;
    background: none;
    backdrop-filter: none;
    border: none;
}

.hero-logo-container {
    background: rgba(20, 20, 20, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-event-logo {
    max-width: 1600px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero h1 {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
}

/* ===== BUTTONS ===== */
.button {
    background-color: var(--primary-color);
    color: #111;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    box-sizing: border-box;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.button.outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button.danger {
    background-color: transparent;
    border: 2px solid #ff5c5c;
    color: #ff5c5c;
}

.button.danger:hover {
    background-color: #ff5c5c;
    color: #111;
    box-shadow: 0 4px 15px rgba(255, 92, 92, 0.4);
}

.button.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 4rem 2rem;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    opacity: 0.3;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    padding: 0 1rem;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    z-index: 2;
}

.timeline-dot.active {
    background-color: var(--primary-color);
    width: 26px;
    height: 26px;
    animation: pulse-dot 1.5s infinite cubic-bezier(.4,2,.6,1);
}

.timeline-dot.active::after {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    opacity: 0.7;
    z-index: 1;
    animation: pulse-dot 1.5s infinite cubic-bezier(.4,2,.6,1);
    pointer-events: none;
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255,215,0,0.5);
        opacity: 1;
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255,215,0,0);
        opacity: 0.7;
        transform: scale(1.12);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,215,0,0);
        opacity: 1;
        transform: scale(1);
    }
}

.timeline-content {
    position: absolute;
    top: 100%;
    margin-top: 1.5rem;
    text-align: center;
    width: 150px;
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    white-space: nowrap;
}

.timeline-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-dot.active {
    background-color: var(--primary-color);
    animation: pulse 1.5s infinite ease-in-out;
}

.timeline-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* ===== NEXT PHASE SECTION ===== */
.next-phase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.next-phase .card {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 13, 19, 0.7);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.next-phase .card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.next-phase .card p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.next-phase .card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.next-phase .card .highlight-phase {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.next-step h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.next-step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

#countdown {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-item .number {
    font-size: 3.5rem;
    font-weight: 700;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* ===== GUESTBOOK ===== */
.guestbook {
    padding: 4rem 2rem;
}

.guestbook .card {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(13, 13, 19, 0.7);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.guestbook h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.guestbook form {
    margin-bottom: 2rem;
}

.guestbook textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
}

.guestbook textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.message {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    vertical-align: middle;
}

.message strong {
    color: var(--primary-color);
    font-weight: 600;
}

.message p {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.message small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ===== PROFILE DROPDOWN ===== */
.profile-dropdown {
    position: relative;
}

.profile-button {
    background: #232127; /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Space between items */
    cursor: pointer;
    padding: 6px; /* Padding inside the button */
    border-radius: 999px; /* Pill shape */
    transition: all 0.3s ease;
    font-family: inherit;
}

.profile-button:hover {
    border-color: var(--primary-color); /* Gold border on hover */
    background-color: #2a2830;
}

.profile-button img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-button .display-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-button .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    margin-right: 4px; /* Space on the right */
}

.profile-dropdown.active .profile-button .fa-chevron-down {
    transform: rotate(180deg);
}

.profile-dropdown-content {
    position: absolute;
    top: calc(100% + 10px); /* Position below button with gap */
    right: 0;
    background-color: #1e1e24; /* Dark dropdown background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    width: 240px; /* Wider dropdown */
    display: none;
    z-index: 1001;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.profile-dropdown.active .profile-dropdown-content {
    display: block;
}

.profile-dropdown-content a {
    display: flex; /* Use flex for alignment */
    align-items: center;
    gap: 0.75rem; /* Space between icon and text */
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.profile-dropdown-content a:hover {
    background-color: #2a2830; /* Hover color */
}

.profile-dropdown-content a i {
    width: 16px; /* Fixed width for icons */
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.profile-dropdown-content a:last-child {
    color: #ff5c5c; /* Red color for logout */
}

.profile-dropdown-content a:last-child:hover {
    background-color: rgba(255, 92, 92, 0.15);
}

/* ===== DESKTOP-ONLY ELEMENTS ===== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .timeline {
        gap: 1rem;
    }
    
    .timeline-content {
        width: 120px;
    }
    
    .timeline-content h3 {
        font-size: 0.9rem;
    }
    
    .countdown-item .number {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    main {
        padding-top: 80px; /* Space for fixed navbar on mobile */
    }
    
    /* Navigation */
    .nav-container {
        padding: 0;
    }
    
    .nav-logo-text {
        font-size: 1.5rem;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-center {
        display: none;
    }
    
    /* Hero */
    .hero-content {
        padding: 1.5rem;
        margin-top: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-logo-container {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-event-logo {
        max-width: 100%;
    }
    
    /* Buttons */
    .button-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center; /* Center buttons horizontally */
    }
    
    .button {
        width: 100%;
        padding: 0.8rem 1rem; /* Padding für mobile Buttons reduziert */
        font-size: 1rem;
    }
    
    .hero-content .button {
        width: auto; /* Override to not be full-width */
        min-width: 280px;
        padding: 0.8rem 2rem; /* Give more horizontal padding */
    }
    
    /* Timeline */
    .timeline-section {
        padding: 2rem 1rem;
    }
    
    .timeline {
        flex-direction: column;
        height: auto;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0;
    }
    
    .timeline-dot {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .timeline-content {
        position: static;
        margin-top: 0;
        width: auto;
        text-align: left;
        flex: 1;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        white-space: normal;
        margin-bottom: 0.25rem;
    }
    
    .timeline-date {
        font-size: 0.9rem;
    }
    
    /* Next Phase */
    .next-phase {
        padding: 2rem 1rem;
    }
    
    .next-phase .card {
        padding: 2rem 1.5rem;
    }
    
    .next-phase .card h2 {
        font-size: 2rem;
    }
    
    .next-phase .card p {
        font-size: 1rem;
    }
    
    #countdown {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .countdown-item .label {
        font-size: 0.8rem;
    }
    
    /* Guestbook */
    .guestbook {
        padding: 2rem 1rem;
    }
    
    .guestbook .card {
        padding: 1.5rem;
    }
    
    .guestbook h2 {
        font-size: 1.5rem;
    }
    
    /* Profile Dropdown */
    .profile-dropdown-content {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .category-card {
        flex-basis: calc(50% - 1.5rem); /* 2 pro Reihe */
        max-width: calc(50% - 1.5rem);
    }
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center; /* NEU: Zentriert alle Elemente */
    }
    .footer-center {
        order: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem; /* Abstand für Zeilen und Spalten */
        text-align: center;
    }
     .footer-center a {
        margin: 0;
    }
    .footer-right {
        order: 1;
    }
    .footer-left {
        order: 3;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo-text {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .next-phase .card h2 {
        font-size: 1.5rem;
    }
    
    .countdown-item .number {
        font-size: 1.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.7rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .timeline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .timeline-item {
        flex: 0 0 calc(50% - 1rem);
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        text-align: center;
    }
}

.placeholder-section {
    padding: 4rem 2rem;
    text-align: center;
}

.placeholder-section .card {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(13, 13, 19, 0.7);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.placeholder-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.placeholder-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== General Section Styling ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* ===== CATEGORY GRID ===== */
.category-section {
    padding: 4rem 2rem;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.category-card {
    flex: 1 1 calc(20% - 1.5rem); /* 5 pro Reihe, mit gap */
    max-width: calc(20% - 1.5rem);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px 0 rgba(255, 215, 0, 0.4); /* Gold glow */
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.category-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 4rem 2rem;
}

.team-role-group {
    margin-bottom: 3rem;
}

.role-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem; /* Reduced gap */
}

.team-member {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    flex-basis: calc(20% - 1.5rem); /* 5 per row on large screens */
    max-width: 220px; /* Max width for consistency */
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.team-member img {
    width: 100px; /* Slightly smaller image */
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover img {
    box-shadow: 0 0 20px 0 rgba(255, 215, 0, 0.5); /* Gold glow on hover */
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #0A0A0A;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo-text {
    color: #fff36f;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-center a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-center a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-right .social-icon {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 0.5rem;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;   /* Verkleinert */
    height: 38px;  /* Verkleinert */
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9rem; /* Kleinere Icons */
}

.footer-right .social-icon:hover {
    background-color: var(--primary-color);
    color: #111;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 2rem auto;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
}

.gofundme-button {
    background-color: #FFD700;
    color: #111;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gofundme-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .category-card {
        flex-basis: calc(33.333% - 1.5rem); /* 3 pro Reihe */
        max-width: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 480px) {
    .category-card {
        flex-basis: 100%; /* 1 pro Reihe */
        max-width: 100%;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1050;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 550px;
    background-color: #1e1e24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 1051;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-header h3 i {
    margin-right: 0.75rem;
    color: var(--accent-color);
}

.modal-close-btn {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: white;
}

.modal-content {
    padding: 1.5rem;
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-section h4 {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.settings-section h4 i {
    margin-right: 0.75rem;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.settings-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.settings-section .small-text {
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.toggle-container label {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3e3e4a;
    transition: .4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* ===== CONTENT PAGE ===== */
.content-page {
    padding: 120px 2rem 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-page .card {
    background-color: rgba(13, 13, 19, 0.7);
    border-radius: 24px;
    padding: 2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.content-page .subtitle {
    text-align: center;
    color: #a0a0a0;
    margin-top: -1rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.content-page h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.content-page p, .content-page ul {
    font-size: 1rem;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.content-page a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-page a:hover {
    color: #fff36f;
}

.content-page ul {
    padding-left: 20px;
}

.impressum-section {
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.info-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* New styles for enhanced glassmorphism */
.privacy-section,
.terms-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.privacy-section:hover,
.terms-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-section h2,
.terms-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-section h2 i,
.terms-section h2 i {
    font-size: 1.2em;
}

.privacy-section h3,
.terms-section h3 {
    color: var(--text-color);
    margin: 1.5rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-section h3 i,
.terms-section h3 i {
    color: var(--primary-color);
    font-size: 1.1em;
}

.privacy-section ul,
.terms-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.privacy-section li i,
.terms-section li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-info {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.info-item p {
    margin: 0.5rem 0;
}

.info-item .info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-item .info-label i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.dispute-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.dispute-info p {
    margin: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.dispute-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dispute-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dispute-info a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-section,
    .terms-section {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .info-item,
    .dispute-info {
        padding: 0.8rem;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- Clips Einsenden Card wie Timer-Card --- */
.clip-submit-card {
  background: #18161e;
  border-radius: 24px;
  max-width: 600px;
  margin: 3rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: #fff;
  text-align: center;
  border: 1.5px solid #28243a;
}
.clip-submit-card h2 {
  color: #ffe066;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.clip-submit-card .subtitle {
  color: #ffe066;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
}
.form-group {
  margin-bottom: 1.7rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
  font-size: 1.08rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid #28243a;
  padding: 0.9rem 1.1rem;
  background: #23202b;
  color: #fff;
  font-size: 1.08rem;
  transition: border 0.2s, box-shadow 0.2s;
  margin-top: 0.1rem;
  box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border: 1.5px solid #ffe066;
  box-shadow: 0 0 0 2px #ffe06633;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L10 13L15 8' stroke='%23ffe066' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
#clipSubmitBtn {
  background: #ffe066;
  color: #18161e;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 2.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffe06622;
}
#clipSubmitBtn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.faq-accordion {
  margin-top: 2.5rem;
  text-align: left;
}
.faq-item { border-bottom: 1px solid #28243a; }
.faq-question {
  background: none;
  border: none;
  color: #ffe066;
  font-weight: 700;
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.faq-question:hover, .faq-item.active .faq-question {
  color: #fff36f;
}
.faq-answer {
  display: none;
  color: #fff;
  padding-bottom: 1rem;
  font-size: 1.01rem;
}
.faq-item.active .faq-answer { display: block; }
@media (max-width: 700px) {
  .clip-submit-card { padding: 1.2rem 0.5rem; }
  .clip-submit-card h2 { font-size: 1.5rem; }
}

/* --- Fehlerfeld für Clip-Link --- */
.clip-error-box {
  background: #2a1313;
  color: #ff6b6b;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
  font-weight: 500;
  border: 1.5px solid #ff6b6b44;
  box-shadow: 0 2px 8px #ff6b6b22;
  text-align: left;
  display: none;
}
.clip-error-box.active { display: block; }

/* --- Dropdown Panel Style --- */
.form-group select {
  background: #23202b;
  color: #fff;
  font-size: 1.13rem;
  border-radius: 12px;
  border: 1.5px solid #28243a;
  box-shadow: 0 4px 24px #00000044;
}
.form-group select option {
  background: #18161e;
  color: #fff;
  font-size: 1.13rem;
  border-radius: 0;
}
.form-group select option:checked, .form-group select option:focus {
  background: #ffe066;
  color: #18161e;
}

/* --- FAQ/Accordion Kategorie-Liste --- */
.faq-answer .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-answer .category-list li {
  margin-bottom: 1.5rem;
}
.faq-answer .category-title {
  color: #ffe066;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 0.2rem;
  display: block;
}
.faq-answer .category-desc {
  color: #fff;
  font-size: 1.04rem;
  margin-left: 0.2rem;
  margin-bottom: 0.2rem;
  display: block;
}

/* Slim Select Custom Styling - Update für gleiche Größe wie Input */
.ss-main {
  background: #23202b !important;
  color: #fff !important;
  border-radius: 12px !important;
  border: 1.5px solid #28243a !important;
  font-size: 1.08rem;
  height: 48px !important;
  padding: 0.9rem 1.1rem !important;
  box-shadow: 0 4px 24px #00000044;
  display: flex;
  align-items: center;
}
.ss-main .ss-values {
  padding: 0 !important;
  margin: 0 !important;
}
.ss-main:focus {
  border: 1.5px solid #ffe066 !important;
  box-shadow: 0 0 0 2px #ffe06633 !important;
}
.ss-placeholder {
  color: #bdbdbd !important;
}
.ss-content {
  background: #18161e !important;
  color: #fff !important;
  border-radius: 12px !important;
  border: 1.5px solid #28243a !important;
  font-size: 1.08rem;
}
.ss-option {
  background: #18161e !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-size: 1.08rem;
}
.ss-option.ss-selected, .ss-option:hover {
  background: #ffe066 !important;
  color: #18161e !important;
}

/* FAQ Accordion Fix */
.faq-question {
  opacity: 1 !important;
  color: #ffe066 !important;
  font-weight: 700;
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  transition: color 0.2s;
  background: none;
  border: none;
}
.faq-question:hover, .faq-item.active .faq-question {
  color: var(--primary-color);
}

/* =================================
   SUBMIT CLIP PAGE STYLES
   ================================= */

.submit-clip-section {
    padding: 120px 2rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 80px); /* Adjust for navbar height */
}

.submit-clip-section .form-container {
    background: #1a1620; /* Slightly lighter than page background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.submit-clip-section .form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    z-index: 2;
}


.submit-clip-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    text-align: left;
}

.submit-clip-section .subtitle {
    font-size: 1rem;
    color: #a09bab;
    margin-bottom: 2rem;
    text-align: left;
}

#submit-clip-form .form-group {
    margin-bottom: 1.5rem;
}

#submit-clip-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #c9c4d4;
    margin-bottom: 0.5rem;
}

#submit-clip-form input,
#submit-clip-form select,
#submit-clip-form textarea {
    width: 100%;
    background-color: #100c14;
    border: 1px solid #3a3246;
    color: var(--text-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
}

#submit-clip-form input:focus,
#submit-clip-form select:focus,
#submit-clip-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
}

#submit-clip-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a09bab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

#submit-clip-form .button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--primary-color);
    color: #111;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

#submit-clip-form .button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

#submit-clip-form .disabled-button {
    background-color: #5c2d33;
    color: #e6a0a0;
    cursor: not-allowed;
    border: 1px solid #8c424d;
    box-shadow: none;
}

#submit-clip-form .disabled-button:hover {
    background-color: #6c757d;
    transform: none;
    box-shadow: none;
}

.clip-counter {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.clip-counter span {
    font-weight: 700;
    font-size: 1.1rem;
}

.coming-soon {
    text-align: center;
    padding: 2rem;
}

.coming-soon h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.1rem;
    color: #c9c4d4;
    margin-bottom: 2rem;
}

.coming-soon .button {
    background: var(--accent-color);
    color: var(--text-color);
}

#form-feedback {
    margin-top: 1rem;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

#form-feedback.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    display: block;
}

#form-feedback.error {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

/* ===== ACTION BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: #111;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.action-button i {
    font-size: 1.1rem;
}

.action-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    color: #111;
}

.action-button.twitch-button {
    background: #9146ff;
    color: white;
}

.action-button.twitch-button:hover {
    background: #7c3aed;
    color: white;
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.action-button:not(.twitch-button) {
    background: var(--primary-color);
    color: #111;
}

.action-button:not(.twitch-button):hover {
    background: #e6c200;
    color: #111;
}

/* ===== JURY SECTION ===== */
.jury-section {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.jury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.jury-container h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #E6C200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jury-container .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.clip-evaluation-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.clip-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.clip-meta {
    flex: 1;
}

.clip-title h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.clip-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.detail-item strong {
    color: #ccc;
    min-width: 120px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-style: italic;
    color: #ddd;
}

.clip-actions {
    flex-shrink: 0;
}

.external-clip-button {
    background: linear-gradient(135deg, #FFD700, #FFB300);
    color: #232127;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.external-clip-button:hover {
    background: linear-gradient(135deg, #FFC800, #FFD700);
    color: #111;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.clip-embed-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.clip-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.clip-embed iframe {
    display: block;
    border-radius: 12px;
}

.clip-error {
    text-align: center;
    padding: 3rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
}

.clip-error p {
    margin-bottom: 1rem;
    color: #dc3545;
}

.decision-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.decision-form {
    display: flex;
    gap: 2rem;
}

.decision-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.75rem;
    min-width: 150px;
}

.reject-button {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.reject-button:hover {
    background: linear-gradient(135deg, #e74c3c, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.accept-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.accept-button:hover {
    background: linear-gradient(135deg, #2ecc71, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.no-clips-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.no-clips-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-clips-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.no-clips-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Mobile Responsive for Jury */
@media (max-width: 768px) {
    .jury-container {
        padding: 0 1rem;
    }
    
    .jury-container h1 {
        font-size: 2rem;
    }
    
    .clip-evaluation-card {
        padding: 1.5rem;
    }
    
    .clip-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .clip-title h2 {
        font-size: 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .detail-item strong {
        min-width: auto;
    }
    
    .clip-embed iframe {
        width: 100%;
        max-width: 100%;
        height: 200px;
    }
    
    .decision-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .decision-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .decision-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: auto;
    }
    
    .no-clips-card {
        padding: 2rem 1rem;
    }
    
    .no-clips-content i {
        font-size: 3rem;
    }
    
    .no-clips-content h2 {
        font-size: 1.5rem;
    }
}

/* ===== FINAL JURY SECTION ===== */
.final-jury .clip-evaluation-card {
    display: flex;
    flex-direction: column;
}

.category-filter-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.category-filter-container label {
    font-weight: 500;
    color: #ccc;
}

#category-select {
    background-color: #2c2541;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.rating-form-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.rating-form label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ddd;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 2.5rem;
    justify-content: center;
}

.star-rating input { display: none; }

.star-rating label {
    color: #444;
    cursor: pointer;
    transition: color 0.2s ease-out;
}

.star-rating:hover label { color: var(--primary-color); }
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--primary-color); }

.star-rating input:checked ~ label { color: var(--primary-color); }

.rating-form .button {
    min-width: 250px;
    gap: 1rem;
}

.jury-section.final-decision .subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ccc;
}

.category-group {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    text-align: center;
}

.final-clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.final-clip-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-clip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.clip-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.clip-embed iframe {
    width: 100%;
    height: 100%;
}

.clip-card-footer {
    padding: 1rem;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1; 
}

.clip-card-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
    flex-grow: 1; 
}

.clip-card-footer strong {
    color: #fff;
}

.copy-button {
    width: 100%;
    background-color: #FFD700; /* Gold color */
    color: #000; /* Black text for better contrast on gold */
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copy-button:hover {
    background-color: #FFC800; /* Darker gold on hover */
    transform: scale(1.02);
}

.copy-button.copied {
    background-color: #28a745; /* Green color */
    color: #fff; /* White text for green background */
}

.copy-button .fa-copy,
.copy-button .fa-check {
    margin-right: 8px;
}

.clip-error-small {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #111;
    color: #aaa;
}

.clip-error-small p {
    margin: 0;
    padding: 1rem;
    text-align: center;
}

/* ===== SETTINGS MODAL ===== */
.settings-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.settings-modal-overlay.active {
    display: flex;
}

.settings-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.settings-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 215, 0, 0.1);
}

.settings-modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
}

.settings-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.settings-modal-content {
    padding: 2rem;
}

.settings-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.settings-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-section h4 i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.settings-section p {
    color: #ccc;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.warning-text {
    color: #ff6b6b !important;
    font-weight: 500;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.toggle-container label {
    font-weight: 500;
    color: #ddd;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.data-export-button,
.data-delete-button {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.data-export-button {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
}

.data-export-button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
}

.data-delete-button {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border: none;
}

.data-delete-button:hover {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    transform: translateY(-2px);
}

/* ===== NEWSLETTER TOOL ===== */
.newsletter-tool-section {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.newsletter-tool-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-tool-container h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.newsletter-tool-container .subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.subscriber-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.subscriber-info p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid rgba(244, 67, 54, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Split View Layout */
.newsletter-split-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.newsletter-form-section,
.newsletter-preview-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form-section h3,
.newsletter-preview-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    margin-bottom: 0;
}

.newsletter-form .form-group {
    margin-bottom: 1.5rem;
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.newsletter-form input,
.newsletter-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #2c2541;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.newsletter-form textarea {
    resize: vertical;
    min-height: 300px;
    font-family: 'Inter', sans-serif;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.preview-button {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-button:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.send-button {
    background: linear-gradient(135deg, var(--primary-color), #e6c200);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.send-button:hover {
    background: linear-gradient(135deg, #e6c200, #d4af00);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Preview Controls */
.preview-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
}

.preview-toggle input {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: #444;
    border-radius: 20px;
    transition: 0.3s;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.preview-toggle input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.preview-toggle input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

.preview-user-select {
    background-color: #2c2541;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.preview-user-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Email Preview */
.email-preview-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #ddd;
}

.email-preview-header {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.email-preview-subject {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.email-preview-meta {
    font-size: 0.9rem;
    color: #666;
}

.email-preview-content {
    padding: 1.5rem;
    min-height: 300px;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

.email-preview-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    text-align: center;
}

.preview-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.preview-placeholder p {
    margin: 0;
    font-size: 1rem;
}

.placeholder-highlight {
    background-color: #fff3cd;
    color: #856404;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #ffeaa7;
}

.newsletter-tips {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-tips h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.newsletter-tips ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #ccc;
}

.newsletter-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .newsletter-split-view {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .preview-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .newsletter-tool-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .newsletter-tool-container h1 {
        font-size: 2rem;
    }
    
    .newsletter-form-section,
    .newsletter-preview-section {
        padding: 1rem;
    }
    
    .newsletter-form textarea {
        min-height: 200px;
    }
    
    .email-preview-content {
        min-height: 200px;
        padding: 1rem;
    }
}

.deadline-info {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 20px 0;
    color: #FFD700;
    font-weight: 500;
    text-align: center;
}

.deadline-passed {
    text-align: center;
    padding: 40px 20px;
}

.deadline-passed h1 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.deadline-passed .subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.deadline-passed p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.deadline-stats {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    display: inline-block;
}

.deadline-stats p {
    margin: 0;
    font-size: 1.1rem;
}

.deadline-stats strong {
    color: #FFD700;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .deadline-passed h1 {
        font-size: 2rem;
    }
    
    .deadline-passed .subtitle {
        font-size: 1.1rem;
    }
    
    .deadline-stats {
        padding: 15px;
    }
}

.submission-count {
    font-weight: 600;
    color: #FFD700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.popular-badge {
    background-color: #FFD700;
    color: #100c14;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .submission-count {
        font-size: 0.9rem;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 1px 4px;
    }
}

.newsletter-info-box {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #FFD700;
}

.newsletter-info-box i {
    font-size: 1rem;
    color: #FFD700;
    flex-shrink: 0;
}

.newsletter-info-box span {
    line-height: 1.4;
}

/* --- Cookie-Banner (Streambinis-Style) --- */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 9999;
    background: #1a1422;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px 0 rgba(16,12,20,0.25);
    padding: 0;
    min-width: 320px;
    max-width: 95vw;
    font-family: 'Inter', Arial, sans-serif;
    border: 2px solid var(--primary-color, #a97fff);
    animation: fadeInUp 0.7s cubic-bezier(.4,2,.6,1);
}
.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2rem 1.2rem 1.5rem;
}
.cookie-banner-icon {
    font-size: 2.2rem;
    color: var(--accent-color, #FFD700);
    flex-shrink: 0;
}
.cookie-banner-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}
.cookie-banner-text a {
    color: var(--primary-color, #a97fff);
    text-decoration: underline;
    font-weight: 500;
}
.cookie-banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}
@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 1rem 1rem 1rem 1rem;
    }
    .cookie-banner {
        min-width: 0;
        max-width: 99vw;
        left: 2vw;
        transform: none;
        right: 2vw;
    }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Jury Status Elements --- */
.jury-status {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.jury-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.vote-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.vote-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.vote-count.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.vote-count.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.voted-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #22c55e;
    font-weight: 500;
}

.voted-status i {
    font-size: 1.2rem;
}

/* --- Alternative Submit Links unter Clip-Formular (zentriert & mehr Abstand) --- */
.submit-alt-links {
  margin-top: 1.5rem; /* Abstand zum Button (ca. 15px) */
  display: flex;
  flex-direction: column;
  gap: 0.32rem; /* ca. 5px Abstand zwischen den Links */
  align-items: center; /* Zentriert die Links */
  width: 100%;
}
.submit-alt-link {
  color: #bdbdbd;
  font-weight: 700;
  text-decoration: underline;
  display: block;
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-size: 1.04rem;
  transition: color 0.2s;
  cursor: pointer;
}
.submit-alt-link:hover, .submit-alt-link:focus {
  color: #ffe066;
  text-decoration: underline;
  outline: none;
}

/* --- Twitch Channel Picker Overlay --- */
#twitch-channel-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  background: rgba(10, 8, 20, 0.82);
}
.tco-backdrop {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
}
.tco-modal {
  position: relative;
  z-index: 1;
  background: #18161e;
  border-radius: 18px;
  box-shadow: 0 8px 32px #00000066;
  padding: 2.2rem 2.1rem 1.5rem 2.1rem;
  min-width: 320px;
  max-width: 98vw;
  width: 370px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: fadeInUp 0.18s;
}
.tco-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: #ffe066;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.tco-close:hover { color: #fff36f; }
.tco-modal h3 {
  margin: 0 0 1.1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #ffe066;
}
.tco-search {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid #28243a;
  background: #23202b;
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.tco-search:focus {
  border: 1.5px solid #ffe066;
  box-shadow: 0 0 0 2px #ffe06633;
}
.tco-results {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 2.5rem;
  max-height: 260px;
  overflow-y: auto;
}
.tco-hint {
  color: #bdbdbd;
  text-align: center;
  font-size: 1.04rem;
  padding: 0.7rem 0;
}
.tco-result {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #23202b;
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  border: 1.5px solid transparent;
}
.tco-result:hover, .tco-result:focus {
  background: #ffe06622;
  color: #ffe066;
  border: 1.5px solid #ffe066;
}
.tco-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #18161e;
  border: 2px solid #28243a;
}
.tco-name {
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
}
.tco-login {
  color: #bdbdbd;
  font-size: 0.98rem;
  margin-left: 0.2rem;
}
.tco-ext {
  margin-left: auto;
  color: #ffe066;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.18s;
}
.tco-ext:hover { color: #fff36f; }
.tco-avatar-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 0.5rem;
  background: #18161e;
  border: 2px solid #28243a;
}
.channel-picker.selected {
  background: #23202b;
  color: #ffe066;
  border: 1.5px solid #ffe066;
}
@media (max-width: 600px) {
  .tco-modal {
    min-width: 0;
    width: 97vw;
    padding: 1.1rem 0.5rem 1rem 0.5rem;
  }
  .tco-search {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
  .tco-result {
    font-size: 0.98rem;
    padding: 0.5rem 0.5rem;
  }
  .tco-avatar {
    width: 30px;
    height: 30px;
  }
}

/* --- Info-Box (gelb, wie Newsletter-Hinweis) --- */
.info-box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0.7rem 0 0.7rem 0;
  box-sizing: border-box;
}
.info-box-yellow {
  background: #ffe06622;
  color: #ffe066;
  border: 1.5px solid #ffe066;
}
.info-box i {
  margin-right: 0.7rem;
  font-size: 1.18rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .info-box { font-size: 0.98rem; padding: 0.8rem 0.7rem; }
  .info-box i { font-size: 1rem; margin-right: 0.5rem; }
}

/* --- Kleine Info-Box für dezente Hinweise --- */
.small-info {
  font-size: 0.97rem;
  padding: 0.5rem 0.8rem;
  font-weight: 400;
}

.action-button:not(.twitch-button):hover {
    background: #e6c200;
    color: #111;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .action-button {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .action-button i {
        font-size: 1rem;
    }
}

/* ===== NEW HERO SECTION ===== */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
    opacity: 1;
    min-width: 100%;
    min-height: 100%;
    background: #100c14;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-left {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-container {
    margin-bottom: 3rem;
}

.hero-event-logo {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.hero-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.hero-button:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.hero-button.twitch:hover {
    background: rgba(145, 70, 255, 0.1);
    border-color: #9146ff;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.2);
}

.hero-button i {
    font-size: 1rem;
}

.hero-button span {
    white-space: nowrap;
}

/* ===== STATUS OVERVIEW SECTION ===== */
.status-overview {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.status-header {
    text-align: center;
    margin-bottom: 4rem;
}

.status-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.status-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.status-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ===== CHECKLIST STYLES ===== */
.checklist-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.checklist-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.checklist-item.completed {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.checklist-item.active {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    animation: pulse 2s infinite;
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checklist-item.completed .checklist-checkbox {
    background: #4caf50;
    color: white;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.checklist-item.active .checklist-checkbox {
    background: #f44336;
    color: white;
    box-shadow: 0 0 15px rgba(244, 67, 54, 0.5);
}

.checklist-item:not(.completed):not(.active) .checklist-checkbox {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.empty-checkbox {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.checklist-date {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* ===== COUNTDOWN AND ACTIONS CONTAINER ===== */
.countdown-actions-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
}

.countdown-header {
    margin-bottom: 2rem;
}

.countdown-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.countdown-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
    min-width: 120px;
}

.countdown-item .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-info {
    margin-bottom: 3rem;
}

.countdown-info p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.countdown-info strong {
    color: var(--primary-color);
}

/* ===== ACTION BUTTONS ROW ===== */
.action-buttons-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.action-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.action-btn.twitch:hover {
    background: rgba(145, 70, 255, 0.1);
    border-color: #9146ff;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.2);
}

.action-btn i {
    font-size: 1rem;
}

.action-btn span {
    white-space: nowrap;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.categories-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.categories-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ffed4e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card-new:hover::before {
    transform: scaleX(1);
}

.category-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 1.5rem;
}

.category-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.category-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-event-logo {
        max-width: 600px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .status-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .checklist-container {
        order: 2;
    }
    
    .countdown-actions-container {
        order: 1;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-new {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-event-logo {
        max-width: 500px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: row;
        max-width: none;
    }
    
    .status-overview,
    .categories-section {
        padding: 3rem 1rem;
    }
    
    .status-header h2,
    .categories-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .status-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .countdown-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .countdown-header p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-display {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-item .number {
        font-size: 1.8rem;
        line-height: 1;
    }
    
    .countdown-item .label {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    .countdown-info {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .countdown-info p {
        font-size: 0.9rem;
    }
    
    .action-buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .action-btn i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .checklist-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .checklist-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .checklist-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .checklist-checkbox {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .checklist-title {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .checklist-date {
        font-size: 0.8rem;
        opacity: 0.8;
    }
    
    .countdown-actions-container {
        padding: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-event-logo {
        max-width: 400px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .status-overview,
    .categories-section {
        padding: 2rem 0.8rem;
    }
    
    .status-header h2,
    .categories-header h2 {
        font-size: 1.6rem;
    }
    
    .status-header p {
        font-size: 0.9rem;
    }
    
    .countdown-header h2 {
        font-size: 1.4rem;
    }
    
    .countdown-header p {
        font-size: 0.8rem;
    }
    
    .countdown-display {
        gap: 0.6rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.6rem 0.4rem;
    }
    
    .countdown-item .number {
        font-size: 1.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.65rem;
    }
    
    .countdown-info p {
        font-size: 0.8rem;
    }
    
    .action-btn {
        max-width: 260px;
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .action-btn i {
        font-size: 0.9rem;
    }
    
    .checklist-container {
        padding: 1.2rem;
    }
    
    .checklist-container h3 {
        font-size: 1.2rem;
    }
    
    .checklist-item {
        padding: 0.7rem;
        gap: 0.7rem;
    }
    
    .checklist-checkbox {
        width: 18px;
        height: 18px;
    }
    
    .checklist-title {
        font-size: 0.85rem;
    }
    
    .checklist-date {
        font-size: 0.75rem;
    }
    
    .countdown-actions-container {
        padding: 1.2rem;
    }
    
    .category-card-new {
        padding: 1.2rem;
    }
    
    .category-content h3 {
        font-size: 1.1rem;
    }
    
    .category-content p {
        font-size: 0.85rem;
    }
}


