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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    color: #e0e7ff;
    overflow-x: hidden;
    position: relative;
}

/* Aurora Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(79, 209, 197, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: aurora 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes aurora {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 14, 39, 0.4);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(79, 209, 197, 0.2);
    transition: all 0.3s ease;
}

nav.hidden {
    opacity: 0;
    transform: translateY(-100%);
}

nav.scrolled {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(25px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

nav a {
    color: #e0e7ff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4fd1c5, #3b82f6);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #4fd1c5;
    text-shadow: 0 0 20px rgba(79, 209, 197, 0.8);
}

nav a:hover::after {
    width: 100%;
}

/* Sections */
section {
    min-height: 50vh;
    padding: 120px 50px 80px;
    position: relative;
    z-index: 2;
}

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

/* Hero Section */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4fd1c5, #3b82f6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(79, 209, 197, 0.5);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(79, 209, 197, 0.5));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(79, 209, 197, 0.8));
    }
}

.tagline {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Glowing Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(79, 209, 197, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(79, 209, 197, 0.6);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Cards with Rim Light */
.card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 197, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4fd1c5, #3b82f6, #a78bfa, #4fd1c5);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(5px);
}

.card:hover::before {
    opacity: 0.7;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 209, 197, 0.3);
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4fd1c5;
}

p {
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Dance Grid */
.dance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dance-item {
    text-align: center;
    padding: 30px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 197, 0.1);
    position: relative;
    overflow: hidden;
    align-content: center;
}

.dance-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 209, 197, 0.2), transparent);
    transition: left 0.6s ease;
}

.dance-item:hover::after {
    left: 100%;
}

.dance-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(79, 209, 197, 0.3);
    border-color: #4fd1c5;
}

/* Snowflake Animation */
.snowflake {
    position: fixed;
    top: -10px;
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
    cursor: default;
    animation: snowfall linear infinite;
    z-index: 1;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(calc(100vh + 20px)) rotate(360deg);
        opacity: 0;
    }
}

/* Gallery Styles */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(79, 209, 197, 0.3);
    color: #cbd5e1;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(79, 209, 197, 0.2);
    border-color: #4fd1c5;
    color: #4fd1c5;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(79, 209, 197, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 25px rgba(79, 209, 197, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(30, 41, 59, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #4fd1c5, #3b82f6, #a78bfa);
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 209, 197, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #4fd1c5;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: #cbd5e1;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.gallery-boop-display {
    color: #4fd1c5;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(79, 209, 197, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #4fd1c5;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #fff;
    text-shadow: 0 0 20px rgba(79, 209, 197, 0.8);
}

.lightbox-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(79, 209, 197, 0.3);
}

.boop-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
    position: relative;
    overflow: hidden;
}

.boop-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.boop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 209, 197, 0.6);
}

.boop-btn:hover::before {
    width: 200px;
    height: 200px;
}

.boop-btn:active {
    transform: translateY(0) scale(0.95);
}

.boop-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.boop-btn:disabled:hover {
    transform: none;
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
}

.boop-icon {
    font-size: 1.2rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.boop-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

#boop-count {
    color: #4fd1c5;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Boop animation */
.boop-btn.booped .boop-icon {
    animation: boopBounce 0.6s ease-out;
}

.boop-btn.booped #boop-count {
    animation: countPulse 0.4s ease-out;
}

@keyframes boopBounce {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.3) rotate(-15deg); }
    50% { transform: scale(1.1) rotate(10deg); }
    75% { transform: scale(1.2) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes countPulse {
    0% { transform: scale(1); color: #4fd1c5; }
    50% { transform: scale(1.4); color: #a78bfa; }
    100% { transform: scale(1); color: #4fd1c5; }
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    color: #e0e7ff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid rgba(79, 209, 197, 0.3);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: rgba(10, 14, 39, 0.9);
    color: #94a3b8;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    nav {
        padding: 15px 20px;
    }

    nav ul {
        gap: 20px;
    }

    section {
        padding: 100px 20px 60px;
    }

    #cookie-banner {
        flex-direction: column !important;
        gap: 15px;
        text-align: center;
        padding: 20px 15px !important;
    }

    #cookie-banner span {
        max-width: 100% !important;
        margin-bottom: 10px;
    }

    #cookie-banner > div {
        justify-content: center;
    }
}

button, input {
  accent-color: auto; /* uses the system/Material You accent */
}

<!DOCTYPE html>
<html lang="de">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Arctic Furs Blog - News, Events und Updates aus der Furry Community im Norden Deutschlands">
    <title>Blog - Arctic Furs</title>
    <link rel="stylesheet" href="style.css">
    <link rel="canonical" href="https://arcticfurs.de/blog.html">
    <link rel="icon" type="image/png" sizes="32x32" href="ico/arcticfurs-ico32x32.png">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Nabla:EDPT,EHLT@162,11&display=swap" rel="stylesheet">
    
    <style>
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 40px 20px;
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(79, 209, 197, 0.2);
            animation: fadeInUp 1s ease-out;
        }

        .blog-header::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #4fd1c5, #3b82f6, #a78bfa, #4fd1c5);
            border-radius: 20px;
            opacity: 0.7;
            z-index: -1;
            filter: blur(5px);
        }

        .blog-header h1 {
            font-family: 'Nabla', monospace;
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #4fd1c5, #3b82f6, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 80px rgba(79, 209, 197, 0.5);
            animation: glow 3s ease-in-out infinite;
            margin-bottom: 10px;
        }

        @keyframes glow {
            0%, 100% {
                filter: brightness(1) drop-shadow(0 0 20px rgba(79, 209, 197, 0.5));
            }
            50% {
                filter: brightness(1.2) drop-shadow(0 0 40px rgba(79, 209, 197, 0.8));
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .filter-btn {
            padding: 10px 25px;
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid rgba(79, 209, 197, 0.3);
            color: #cbd5e1;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
            font-size: 1rem;
            font-weight: 500;
        }

        .filter-btn:hover {
            background: rgba(79, 209, 197, 0.2);
            border-color: #4fd1c5;
            color: #4fd1c5;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(79, 209, 197, 0.3);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #4fd1c5, #3b82f6);
            border-color: transparent;
            color: white;
            box-shadow: 0 5px 25px rgba(79, 209, 197, 0.5);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .blog-post {
            background: rgba(30, 41, 59, 0.4);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(79, 209, 197, 0.2);
            cursor: pointer;
        }

        .blog-post::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #4fd1c5, #3b82f6, #a78bfa, #4fd1c5);
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s ease;
            filter: blur(5px);
        }

        .blog-post::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 209, 197, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .blog-post:hover::before {
            opacity: 0.7;
        }

        .blog-post:hover::after {
            left: 100%;
        }

        .blog-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(79, 209, 197, 0.3);
        }

        .blog-post-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .category-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .category-news { 
            background: linear-gradient(135deg, #ef4444, #dc2626); 
            color: white;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
        }
        .category-events { 
            background: linear-gradient(135deg, #8b5cf6, #7c3aed); 
            color: white;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
        }
        .category-community { 
            background: linear-gradient(135deg, #10b981, #059669); 
            color: white;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
        }
        .category-announcement { 
            background: linear-gradient(135deg, #f59e0b, #d97706); 
            color: white;
            box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
        }
        .category-gallery { 
            background: linear-gradient(135deg, #ec4899, #db2777); 
            color: white;
            box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
        }

        .blog-date {
            color: #94a3b8;
            font-size: 14px;
        }

        .blog-title {
            color: #4fd1c5;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            transition: all 0.3s ease;
        }

        .blog-post:hover .blog-title {
            text-shadow: 0 0 20px rgba(79, 209, 197, 0.8);
        }

        .blog-author {
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .blog-excerpt {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .tag {
            padding: 4px 8px;
            background: rgba(79, 209, 197, 0.2);
            border: 1px solid rgba(79, 209, 197, 0.3);
            border-radius: 12px;
            font-size: 12px;
            color: #4fd1c5;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: rgba(79, 209, 197, 0.3);
            box-shadow: 0 0 10px rgba(79, 209, 197, 0.2);
        }

        .read-more {
            color: #4fd1c5;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .read-more::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4fd1c5, #3b82f6);
            transition: width 0.3s ease;
        }

        .read-more:hover {
            color: #3b82f6;
            text-shadow: 0 0 10px rgba(79, 209, 197, 0.5);
        }

        .read-more:hover::after {
            width: 100%;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #94a3b8;
            background: rgba(30, 41, 59, 0.3);
            border-radius: 20px;
            border: 1px solid rgba(79, 209, 197, 0.2);
        }

        .no-posts {
            text-align: center;
            padding: 60px 20px;
            background: rgba(30, 41, 59, 0.3);
            border-radius: 20px;
            border: 1px solid rgba(79, 209, 197, 0.2);
            backdrop-filter: blur(10px);
        }

        .no-posts h3 {
            color: #4fd1c5;
            margin-bottom: 15px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .page-btn {
            padding: 10px 15px;
            background: rgba(30, 41, 59, 0.4);
            border: 1px solid rgba(79, 209, 197, 0.3);
            border-radius: 10px;
            color: #94a3b8;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
            font-weight: 500;
        }

        .page-btn:hover {
            background: rgba(79, 209, 197, 0.2);
            color: #4fd1c5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(79, 209, 197, 0.3);
        }

        .page-btn.active {
            background: linear-gradient(135deg, #4fd1c5, #3b82f6);
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(79, 209, 197, 0.4);
        }

        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none !important;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
        }

        .modal-content {
            background: rgba(30, 41, 59, 0.95);
            margin: 2% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(79, 209, 197, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
            box-shadow: 0 20px 60px rgba(79, 209, 197, 0.3);
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #4fd1c5, #3b82f6, #a78bfa, #4fd1c5);
            border-radius: 20px;
            opacity: 0.7;
            z-index: -1;
            filter: blur(5px);
        }

        .modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid rgba(79, 209, 197, 0.2);
            position: sticky;
            top: 0;
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(10px);
        }

        .modal-body {
            padding: 30px;
            line-height: 1.8;
            color: #e2e8f0;
        }

        .modal-body h1, .modal-body h2, .modal-body h3 {
            color: #4fd1c5;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .close {
            color: #94a3b8;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            background: none;
            border: none;
        }

        .close:hover {
            color: #4fd1c5;
            text-shadow: 0 0 20px rgba(79, 209, 197, 0.8);
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .blog-header h1 {
                font-size: 2rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                width: 95%;
                margin: 5% auto;
            }
            
            .modal-body {
                padding: 20px;
            }

            .blog-filters {
                gap: 10px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    color: #e0e7ff;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Aurora Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(79, 209, 197, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: aurora 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes aurora {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px);
    }
}

/* Main Content Container */
.admin-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styling */
h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, #4fd1c5, #3b82f6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(79, 209, 197, 0.5);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(79, 209, 197, 0.5));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(79, 209, 197, 0.8));
    }
}

/* Welcome Message */
p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

/* Status/Statistics Bar */
.stats-bar {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid rgba(79, 209, 197, 0.2);
    text-align: center;
    font-weight: 600;
    color: #4fd1c5;
}

/* Admin Section Cards */
.admin-section {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 209, 197, 0.2);
    color:white;
}

.admin-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4fd1c5, #3b82f6, #a78bfa, #4fd1c5);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(5px);
}

.admin-section:hover::before {
    opacity: 0.7;
}

.admin-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 209, 197, 0.3);
}

/* Section Headers */
h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #4fd1c5;
    border-bottom: 2px solid rgba(79, 209, 197, 0.3);
    padding-bottom: 10px;
}

/* Form Styling */
.form-table {
    width: 100%;
    max-width: 700px;
    border-spacing: 0;
    margin-bottom: 20px;
}

.form-table td {
    padding: 12px;
    vertical-align: top;
}

.form-table td:first-child {
    font-weight: 600;
    color: #4fd1c5;
    width: 150px;
}

.form-table input,
.form-table textarea,
.form-table select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: #e0e7ffe8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-table input:focus,
.form-table textarea:focus,
.form-table select:focus {
    outline: none;
    border-color: #4fd1c5;
    box-shadow: 0 0 15px rgba(79, 209, 197, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

/* Labels */
label {
    color: #4fd1c5;
    font-weight: 600;
}

/* Button Styling */
.btn-primary {
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 209, 197, 0.6);
}

.btn-primary:hover::before {
    width: 200px;
    height: 200px;
}

.btn-danger {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6);
    background: linear-gradient(135deg, #ff6666, #ee0000);
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

thead {
    background: linear-gradient(135deg, #4fd1c5, #3b82f6);
}

thead th {
    padding: 15px;
    color: white;
    font-weight: 600;
    text-align: left;
}

tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(79, 209, 197, 0.1);
    color: #cbd5e1;
}

tbody tr:hover {
    background: rgba(79, 209, 197, 0.1);
}

/* Image Preview */
table img {
    border-radius: 8px;
    border: 2px solid rgba(79, 209, 197, 0.3);
    transition: all 0.3s ease;
}

table img:hover {
    border-color: #4fd1c5;
    box-shadow: 0 5px 20px rgba(79, 209, 197, 0.4);
}

/* Code blocks */
code {
    background: rgba(15, 23, 42, 0.8);
    padding: 4px 8px;
    border-radius: 4px;
    color: #4fd1c5;
    font-family: 'Courier New', monospace;
}

pre {
    background: rgba(15, 23, 42, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(79, 209, 197, 0.2);
    overflow-x: auto;
    color: #cbd5e1;
    margin: 20px 0;
}

/* Status indicators */
.status-past {
    color: #94a3b8;
}

.status-today {
    color: #ff6600;
    font-weight: 600;
}

.status-upcoming {
    color: #4fd1c5;
    font-weight: 600;
}

/* Message styling */
.message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
    font-weight: 500;
}

.message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #f87171;
}

/* Details/Summary styling */
details {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid rgba(79, 209, 197, 0.2);
}

summary {
    color: #4fd1c5;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

summary:hover {
    color: #3b82f6;
}

/* Links */
a {
    color: #4fd1c5;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(79, 209, 197, 0.5);
}

/* Small text */
small {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Emphasis */
em {
    color: #f87171;
    font-style: italic;
}

/* Strong text */
strong {
    color: #4fd1c5;
    font-weight: 700;
}

/* File input custom styling */
input[type="file"] {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 2px dashed rgba(79, 209, 197, 0.3) !important;
    padding: 20px !important;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #4fd1c5 !important;
    background: rgba(79, 209, 197, 0.1) !important;
}

/* Datalist styling */
datalist {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .admin-section {
        padding: 20px;
    }
    
    .form-table td {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    
    .form-table td:first-child {
        width: 100%;
        margin-bottom: 5px;
    }
    
    table, thead, tbody, th, td, tr {
        display: block;
    }
    
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    tr {
        border: 1px solid rgba(79, 209, 197, 0.2);
        margin-bottom: 10px;
        border-radius: 10px;
        padding: 10px;
    }
    
    td {
        border: none;
        position: relative;
        padding-left: 30%;
    }
    
    td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 6px;
        width: 25%;
        padding-right: 10px;
        white-space: nowrap;
        color: #4fd1c5;
        font-weight: 600;
    }
}
/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.loading-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 350px;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loading-bar {
    width: 100%;
    height: 24px;
    background: #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 12px;
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 33%, rgba(255, 255, 255, 0.3) 50%, transparent 66%);
    animation: shine 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.loading-text {
    margin: 10px 0;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.loading-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4CAF50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

.form-loading {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.btn-loading {
    background: #ccc !important;
    cursor: not-allowed !important;
    position: relative;
    overflow: hidden;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: button-shine 1.5s infinite;
}

@keyframes button-shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.file-status {
    margin-top: 8px;
    padding: 5px 10px;
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-radius: 4px;
    color: #2e7d2e;
    font-size: 12px;
}

.status-success { color: #4CAF50; font-weight: bold; }
.status-error { color: #f44336; font-weight: bold; }
.status-warning { color: #ff9800; font-weight: bold; }