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

        :root {
            --color-bg: #0f1419;
            --color-bg-light: #1a1f2e;
            --color-text: #e5e7eb;
            --color-accent: #d4af37;
            --color-accent-2: #9ca3af;
            --color-accent-3: #1e3a5f;
            --color-border: #2d3748;
            --color-hover: #1e2432;
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'Work Sans', sans-serif;
        }

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

        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 58, 95, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(156, 163, 175, 0.06) 0%, transparent 50%);
            animation: gradientShift 25s ease infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(5%, 5%) rotate(120deg); }
            66% { transform: translate(-5%, 5%) rotate(240deg); }
        }

        body > * {
            position: relative;
            z-index: 1;
        }

        /* Header */
        header {
            padding: 5rem 2rem 3rem;
            text-align: center;
            border-bottom: 1px solid var(--color-border);
            animation: fadeIn 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
            50% { transform: translateX(-50%) scale(1.1); opacity: 0.6; }
        }

        h1 {
            font-family: var(--font-serif);
            font-size: 4.5rem;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            animation: gradientText 8s ease infinite;
            background-size: 200% 200%;
        }

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

        .tagline {
            font-size: 1rem;
            color: #9ca3af;
            font-weight: 300;
            letter-spacing: 2px;
            position: relative;
        }

        /* Search Bar */
        .search-container {
            max-width: 600px;
            margin: 3rem auto;
            padding: 0 2rem;
            position: relative;
            animation: slideUp 0.8s ease-out 0.2s backwards;
        }

        .search-wrapper {
            position: relative;
        }

        #searchInput {
            width: 100%;
            padding: 1.2rem 3.5rem 1.2rem 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(26, 31, 46, 0.6);
            backdrop-filter: blur(10px);
            font-family: var(--font-sans);
            font-size: 0.95rem;
            color: var(--color-text);
            transition: all 0.3s ease;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
        }

        #searchInput::placeholder {
            color: #6b7280;
        }

        #searchInput:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2), 0 0 0 3px rgba(212, 175, 55, 0.1);
            background: rgba(26, 31, 46, 0.8);
        }

        .search-icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            color: #d4af37;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 4rem;
        }

        /* Main Articles */
        .main-articles {
            animation: slideUp 0.8s ease-out 0.4s backwards;
        }

        .article-card {
            margin-bottom: 4rem;
            padding: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.15);
            background: linear-gradient(135deg, rgba(26, 31, 46, 0.5) 0%, rgba(26, 31, 46, 0.3) 100%);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #1e3a5f, #d4af37);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .article-card:hover::before {
            opacity: 1;
        }

        .article-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
        }

        .article-card:nth-child(1) { animation-delay: 0.5s; }
        .article-card:nth-child(2) { animation-delay: 0.6s; }
        .article-card:nth-child(3) { animation-delay: 0.7s; }

        .article-date {
            font-size: 0.85rem;
            color: #9ca3af;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .article-title {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            cursor: pointer;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .article-title:hover {
            background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .article-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin: 1.5rem 0;
            border-radius: 12px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .article-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
        }

        .article-excerpt {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #d1d5db;
            margin-bottom: 2rem;
        }

        .read-more {
            display: inline-block;
            padding: 1rem 2.5rem;
            border: 1px solid var(--color-accent);
            background: transparent;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            color: var(--color-text);
            position: relative;
            overflow: hidden;
        }

        .read-more::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #d4af37, #1e3a5f);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .read-more:hover::before {
            left: 0;
        }

        .read-more:hover {
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        /* Sidebar */
        .sidebar {
            animation: slideUp 0.8s ease-out 0.6s backwards;
        }

        .sidebar-title {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 400;
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sidebar-article {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(26, 31, 46, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .sidebar-article:hover {
            transform: translateX(8px);
            border-color: rgba(212, 175, 55, 0.4);
            background: rgba(26, 31, 46, 0.6);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
        }

        .sidebar-date {
            font-size: 0.75rem;
            color: #9ca3af;
            letter-spacing: 1.5px;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .sidebar-article-title {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            line-height: 1.3;
            margin-bottom: 0.5rem;
            color: #e5e7eb;
        }

        .sidebar-excerpt {
            font-size: 0.9rem;
            color: #9ca3af;
            line-height: 1.5;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            font-size: 1.1rem;
            color: #9ca3af;
            display: none;
            background: rgba(26, 31, 46, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 12px;
            margin: 2rem;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            overflow-y: auto;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            max-width: 900px;
            margin: 4rem auto;
            background: linear-gradient(135deg, rgba(26, 31, 46, 0.9) 0%, rgba(26, 31, 46, 0.7) 100%);
            backdrop-filter: blur(20px);
            padding: 4rem;
            position: relative;
            animation: slideUp 0.4s ease-out;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .close-modal {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 2rem;
            cursor: pointer;
            color: #9ca3af;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
        }

        .close-modal:hover {
            color: #e5e7eb;
            background: rgba(212, 175, 55, 0.2);
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: var(--font-serif);
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-date {
            font-size: 0.9rem;
            color: #9ca3af;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .modal-image {
            width: 100%;
            height: auto;
            margin: 2rem 0;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        }

        .modal-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #d1d5db;
        }

        /* Admin Link */
        .admin-link {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d4af37, #1e3a5f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 100;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            animation: float 3s ease-in-out infinite;
        }

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

        .admin-link:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
        }

        .admin-link::before {
            content: "⚙";
            color: white;
            font-size: 1.8rem;
        }

        .admin-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37, #1e3a5f);
            opacity: 0.5;
            animation: pulse-ring 2s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Login Page */
        .login-page {
            display: none;
            min-height: 100vh;
            padding: 4rem 2rem;
            justify-content: center;
            align-items: center;
        }

        .login-container {
            max-width: 400px;
            width: 100%;
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: linear-gradient(135deg, rgba(26, 31, 46, 0.9) 0%, rgba(26, 31, 46, 0.7) 100%);
            backdrop-filter: blur(20px);
            animation: fadeInUp 0.6s ease-out;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
        }

        .login-title {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #9ca3af;
            letter-spacing: 0.5px;
        }

        input[type="email"],
        input[type="password"],
        input[type="text"],
        textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            background: rgba(26, 31, 46, 0.6);
            font-family: var(--font-sans);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            color: var(--color-text);
        }

        input::placeholder,
        textarea::placeholder {
            color: #6b7280;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            background: rgba(26, 31, 46, 0.8);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        textarea {
            min-height: 200px;
            resize: vertical;
        }

        .btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #d4af37, #1e3a5f);
            color: white;
            border: none;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .error-message {
            color: #fca5a5;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            display: none;
            text-align: center;
            padding: 0.75rem;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 6px;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        /* Admin Panel */
        .admin-panel {
            display: none;
            min-height: 100vh;
            padding: 4rem 2rem;
        }

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

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .admin-title {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logout-btn {
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 1px solid rgba(212, 175, 55, 0.4);
            font-family: var(--font-sans);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 8px;
            color: var(--color-text);
            letter-spacing: 1px;
        }

        .logout-btn:hover {
            background: linear-gradient(135deg, #d4af37, #1e3a5f);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .admin-form {
            background: linear-gradient(135deg, rgba(26, 31, 46, 0.7) 0%, rgba(26, 31, 46, 0.5) 100%);
            backdrop-filter: blur(20px);
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .image-preview {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
            margin-top: 1rem;
            display: none;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        .footer {
            margin-top: 6rem;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            background: linear-gradient(135deg, rgba(26, 31, 46, 0.5) 0%, rgba(26, 31, 46, 0.3) 100%);
            backdrop-filter: blur(10px);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .footer-title {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-subtitle {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #e5e7eb;
        }

        .footer-description {
            color: #9ca3af;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

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

        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .sidebar {
                order: 2;
            }

            .floating-shapes {
                display: none;
            }
        }

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

            .article-title {
                font-size: 2rem;
            }

            .modal-content {
                padding: 2rem;
                margin: 2rem 1rem;
            }

            .modal-title {
                font-size: 2rem;
            }

            .admin-form,
            .login-container {
                padding: 2rem;
            }

            .article-card {
                padding: 1.5rem;
            }
        }

        /* Floating decorative shapes */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.15;
        }

        .shape-1 {
            top: 10%;
            left: 5%;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #d4af37, #1e3a5f);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: float-1 20s ease-in-out infinite;
        }

        .shape-2 {
            top: 60%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #1e3a5f, #9ca3af);
            border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
            animation: float-2 25s ease-in-out infinite;
        }

        .shape-3 {
            bottom: 15%;
            left: 15%;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #9ca3af, #d4af37);
            border-radius: 41% 59% 41% 59% / 41% 59% 41% 59%;
            animation: float-3 18s ease-in-out infinite;
        }

        @keyframes float-1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        @keyframes float-2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-40px, 40px) rotate(180deg); }
        }

        @keyframes float-3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-25px, -25px) rotate(-120deg); }
            66% { transform: translate(25px, 15px) rotate(-240deg); }
        }
