        @import url('https://fonts.googleapis.com/css2?family=Tahoma&family=Georgia&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-size: 13px;
            background: #1a1a2e;
            color: #000;
            min-height: 100vh;
        }
        
        a {
            color: #003399;
            text-decoration: underline;
        }
        a:hover {
            color: #cc0000;
        }
        a:visited {
            color: #660066;
        }
        
        .top-banner {
            background: linear-gradient(180deg, #cc0000 0%, #990000 50%, #660000 100%);
            border-bottom: 3px solid #ffcc00;
            padding: 5px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-banner-left {
            color: #fff;
            font-size: 10px;
        }
        
        .top-banner-right {
            color: #ffcc00;
            font-size: 10px;
            font-style: italic;
        }
        
        .main-header {
            background: linear-gradient(180deg, #000033 0%, #000066 30%, #000099 60%, #0000cc 100%);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 4px solid #ffcc00;
        }
        
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #990000 100%);
            color: #fff;
            font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 64px;
            padding: 8px 20px;
            border: 3px outset #ff6666;
            box-shadow: 
                inset 2px 2px 4px rgba(255,255,255,0.3),
                inset -2px -2px 4px rgba(0,0,0,0.3),
                4px 4px 8px rgba(0,0,0,0.5);
            letter-spacing: 4px;
            text-shadow: 2px 2px 0 #000, -1px -1px 0 #ff6666;
        }
        
        .logo-tagline {
            color: #ffcc00;
            font-size: 10px;
            font-style: italic;
            text-shadow: 1px 1px 2px #000;
        }
        
        .header-right {
            text-align: right;
        }
        
        .current-time {
            color: #00ff00;
            font-family: 'Courier New', monospace;
            font-size: 18px;
            background: #000;
            padding: 8px 15px;
            border: 2px inset #333;
            margin-bottom: 5px;
            text-align: center;
            display: inline-block;
        }
        
        .weather-box {
            background: linear-gradient(180deg, #6699cc 0%, #336699 100%);
            border: 2px outset #99ccff;
            padding: 5px 10px;
            color: #fff;
            font-size: 10px;
        }
        
        .region-nav {
            background: linear-gradient(180deg, #003366 0%, #001a33 100%);
            border-bottom: 3px solid #ffcc00;
            padding: 0;
        }
        
        .region-nav-inner {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .region-list {
            display: flex;
            list-style: none;
        }
        
        .region-list li {
            border-right: 1px solid #004080;
        }
        
        .region-list li:last-child {
            border-right: none;
        }
        
        .region-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            text-shadow: 1px 1px 1px #000;
            background: linear-gradient(180deg, #004080 0%, #002040 100%);
            cursor: pointer;
        }
        
        .region-list a:hover,
        .region-list a.active {
            background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
            color: #ffcc00;
        }
        
        .region-icon {
            font-size: 16px;
        }
        
        .ticker-container {
            background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
            border-bottom: 2px solid #ffcc00;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .ticker-label {
            background: linear-gradient(180deg, #ffcc00 0%, #ff9900 100%);
            color: #990000;
            font-weight: bold;
            font-size: 11px;
            padding: 6px 12px;
            text-transform: uppercase;
            border-right: 2px solid #cc6600;
            white-space: nowrap;
            animation: pulse 1s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .ticker-content {
            flex: 1;
            overflow: hidden;
            padding: 6px 10px;
        }
        
        .ticker-text {
            display: inline-block;
            white-space: nowrap;
            color: #fff;
            font-weight: bold;
            animation: scroll 30s linear infinite;
        }
        
        @keyframes scroll {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        .ticker-text span {
            margin-right: 50px;
            color: #ffcc00;
        }
        
        .main-container {
            display: table;
            width: 100%;
            background: #e8e8e8;
        }
        
        .sidebar-left {
            display: table-cell;
            width: 250px;
            background: linear-gradient(180deg, #cccccc 0%, #999999 100%);
            vertical-align: top;
            border-right: 3px ridge #aaa;
            padding: 10px;
        }
        
        .content-main {
            display: table-cell;
            vertical-align: top;
            padding: 10px;
            background: #f5f5f5;
            min-height: 400px;
        }
        
        .sidebar-right {
            display: table-cell;
            width: 300px;
            background: linear-gradient(180deg, #cccccc 0%, #999999 100%);
            vertical-align: top;
            border-left: 3px ridge #aaa;
            padding: 10px;
        }
        
        .sidebar-box {
            background: #fff;
            border: 2px outset #ccc;
            margin-bottom: 10px;
        }
        
        .sidebar-box-header {
            background: linear-gradient(180deg, #000066 0%, #000099 50%, #0000cc 100%);
            color: #fff;
            font-weight: bold;
            font-size: 13px;
            padding: 5px 8px;
            text-transform: uppercase;
            border-bottom: 2px solid #ffcc00;
        }
        
        .sidebar-box-header.red {
            background: linear-gradient(180deg, #990000 0%, #cc0000 50%, #ff0000 100%);
        }
        
        .sidebar-box-content {
            padding: 12px;
            font-size: 12px;
            line-height: 1.5;
        }
        
        .sidebar-box-content ul {
            list-style: square;
            margin-left: 15px;
        }
        
        .sidebar-box-content li {
            margin-bottom: 5px;
        }
        
        .poll-option {
            display: block;
            margin: 5px 0;
        }
        
        .poll-result-item {
            margin: 8px 0;
        }
        
        .poll-result-label {
            font-size: 11px;
            margin-bottom: 3px;
        }
        
        .poll-result-bar-container {
            background: #ddd;
            border: 1px inset #ccc;
            height: 16px;
            width: 100%;
        }
        
        .poll-result-bar {
            background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
            height: 100%;
            transition: width 0.5s ease;
        }
        
        .poll-result-percent {
            font-size: 11px;
            font-weight: bold;
            color: #333;
            text-align: right;
        }
        
        .poll-btn {
            background: linear-gradient(180deg, #e0e0e0 0%, #c0c0c0 50%, #a0a0a0 100%);
            border: 2px outset #ccc;
            padding: 3px 10px;
            font-size: 10px;
            cursor: pointer;
            margin-top: 8px;
        }
        .poll-btn:hover {
            border-style: inset;
        }
        
        .featured-story {
            background: #fff;
            border: 3px double #990000;
            margin-bottom: 15px;
            box-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            transition: transform 0.1s;
        }
        
        .featured-story:hover {
            transform: translate(-2px, -2px);
            box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
        }
        
        .featured-header {
            background: linear-gradient(180deg, #990000 0%, #cc0000 50%, #990000 100%);
            color: #fff;
            padding: 8px 12px;
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .live-badge {
            background: #ffcc00;
            color: #990000;
            padding: 2px 8px;
            font-weight: bold;
            font-size: 9px;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .featured-content {
            display: flex;
            padding: 12px;
        }
        
        .featured-image {
            width: 450px;
            height: 300px;
            background: linear-gradient(135deg, #333 0%, #666 50%, #333 100%);
            border: 2px inset #999;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .featured-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0,0,0,0.1) 2px,
                    rgba(0,0,0,0.1) 4px
                );
        }
        
        .featured-image-placeholder {
            color: #aaa;
            font-size: 12px;
            text-align: center;
            z-index: 1;
        }
        
        .featured-image-icon {
            font-size: 48px;
            margin-bottom: 5px;
        }
        
        .featured-text h2 {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 28px;
            color: #000033;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .featured-text p {
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 10px;
        }
        
        .featured-text .byline {
            font-style: italic;
            color: #666;
            font-size: 10px;
        }
        
        .read-more {
            display: inline-block;
            background: linear-gradient(180deg, #003399 0%, #000066 100%);
            color: #fff !important;
            padding: 5px 15px;
            text-decoration: none;
            font-size: 10px;
            font-weight: bold;
            border: 2px outset #6699ff;
            margin-top: 10px;
        }
        .read-more:hover {
            background: linear-gradient(180deg, #000066 0%, #003399 100%);
            border-style: inset;
        }
        
        .news-section-header {
            background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
            color: #ffcc00;
            font-size: 18px;
            font-weight: bold;
            padding: 8px 12px;
            margin-bottom: 10px;
            border-left: 5px solid #cc0000;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .news-card {
            background: #fff;
            border: 1px solid #ccc;
            box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: transform 0.1s;
        }
        
        .news-card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
        }
        
        .news-card-image {
            height: 180px;
            background: linear-gradient(135deg, #444 0%, #666 50%, #444 100%);
            border-bottom: 2px solid #999;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        
        .news-card-image .card-icon {
            font-size: 32px;
        }
        
        .category-tag {
            position: absolute;
            top: 5px;
            left: 5px;
            background: #cc0000;
            color: #fff;
            font-size: 9px;
            padding: 2px 6px;
            text-transform: uppercase;
            font-weight: bold;
        }
        
        .category-tag.europe { background: #003399; }
        .category-tag.asia { background: #006600; }
        .category-tag.africa { background: #660099; }
        .category-tag.americas { background: #ff6600; }
        .category-tag.mideast { background: #996633; }
        .category-tag.world { background: #333; }
        
        .news-card-content {
            padding: 10px;
        }
        
        .news-card h3 {
            font-family: Georgia, serif;
            font-size: 16px;
            color: #003399;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        
        .news-card h3 a {
            color: #003399;
            text-decoration: none;
        }
        .news-card h3 a:hover {
            text-decoration: underline;
            color: #cc0000;
        }
        
        .news-card-title {
            font-family: Georgia, serif;
            font-size: 16px;
            color: #003399;
            margin-bottom: 6px;
            line-height: 1.3;
            font-weight: bold;
        }
        .news-card:hover .news-card-title {
            text-decoration: underline;
            color: #cc0000;
        }
        
        .news-card p {
            font-size: 12px;
            color: #333;
            line-height: 1.4;
        }
        
        .news-card-excerpt {
            font-size: 12px;
            color: #333;
            line-height: 1.4;
        }
        
        .news-card .timestamp {
            font-size: 9px;
            color: #999;
            margin-top: 5px;
            display: flex;
            justify-content: space-between;
        }
        
        .news-card .session {
            color: #cc0000;
            font-weight: bold;
        }
        
        .market-box {
            background: #000;
            border: 2px inset #333;
            padding: 8px;
        }
        
        .market-item {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            border-bottom: 1px dotted #333;
            font-family: 'Courier New', monospace;
            font-size: 10px;
        }
        
        .market-item:last-child {
            border-bottom: none;
        }
        
        .market-symbol {
            color: #fff;
            font-weight: bold;
        }
        
        .market-value {
            color: #0f0;
        }
        
        .email-box {
            background: linear-gradient(180deg, #ffffcc 0%, #ffff99 100%);
            border: 2px outset #cc9900;
            padding: 10px;
            text-align: center;
        }
        
        .email-box h4 {
            color: #990000;
            font-size: 12px;
            margin-bottom: 8px;
        }
        
        .email-box p {
            font-size: 10px;
            margin-bottom: 8px;
        }
        
        .email-input {
            width: 100%;
            padding: 4px;
            border: 2px inset #ccc;
            font-size: 10px;
            margin-bottom: 5px;
        }
        
        .email-submit {
            background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
            color: #fff;
            border: 2px outset #ff6666;
            padding: 4px 15px;
            font-size: 10px;
            font-weight: bold;
            cursor: pointer;
        }
        .email-submit:hover {
            border-style: inset;
        }
        
        .ad-banner {
            background: linear-gradient(135deg, #ff9900 0%, #ff6600 50%, #cc3300 100%);
            border: 3px outset #ffcc00;
            padding: 15px;
            text-align: center;
            margin: 10px 0;
            animation: adPulse 2s infinite;
        }
        
        @keyframes adPulse {
            0%, 100% { box-shadow: 0 0 5px #ff6600; }
            50% { box-shadow: 0 0 15px #ff6600; }
        }
        
        .ad-banner p {
            color: #fff;
            font-weight: bold;
            font-size: 14px;
            text-shadow: 1px 1px 2px #000;
        }
        
        .ad-banner small {
            color: #ffffcc;
            font-size: 9px;
        }
        
        .footer {
            background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
            border-top: 4px solid #cc0000;
            padding: 20px;
            color: #999;
            font-size: 10px;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
            margin-bottom: 15px;
        }
        
        .footer-section h5 {
            color: #ffcc00;
            font-size: 11px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        
        .footer-section a {
            color: #999;
            display: block;
            margin-bottom: 4px;
            text-decoration: none;
            cursor: pointer;
        }
        .footer-section a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-logo {
            color: #cc0000;
            font-family: Impact, sans-serif;
            font-size: 24px;
            letter-spacing: 2px;
        }
        
        .footer-legal {
            text-align: right;
        }
        
        .footer-legal a {
            color: #666;
            margin-left: 15px;
        }
        
        .visitor-counter {
            background: #000;
            border: 2px inset #333;
            padding: 8px;
            text-align: center;
            margin-top: 10px;
        }
        
        .counter-label {
            color: #999;
            font-size: 9px;
            margin-bottom: 5px;
        }
        
        .counter-digits {
            font-family: 'Courier New', monospace;
            font-size: 16px;
            color: #0f0;
            background: #001100;
            padding: 5px 10px;
            border: 1px inset #003300;
            letter-spacing: 2px;
        }
        
        .scrolling-headlines {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .headlines-inner {
            animation: scrollUp 20s linear infinite;
        }
        
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        
        .headline-item {
            padding: 8px 0;
            border-bottom: 1px dotted #999;
        }
        
        .headline-item a {
            font-size: 10px;
            color: #003399;
            text-decoration: none;
        }
        .headline-item a:hover {
            color: #cc0000;
            text-decoration: underline;
        }
        
        .headline-time {
            font-size: 9px;
            color: #999;
        }
        
        .world-clock {
            text-align: center;
            padding: 5px;
        }
        
        .clock-city {
            display: flex;
            justify-content: space-between;
            padding: 3px 0;
            border-bottom: 1px dotted #ccc;
            font-size: 10px;
        }
        
        .clock-city:last-child {
            border-bottom: none;
        }
        
        .clock-name {
            font-weight: bold;
            color: #003399;
        }
        
        .clock-time {
            font-family: 'Courier New', monospace;
            color: #333;
        }
        
        .web-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            justify-content: center;
            padding: 10px;
            background: #ddd;
            border: 1px inset #ccc;
        }
        
        .web-button {
            width: 88px;
            height: 31px;
            background: linear-gradient(180deg, #999 0%, #666 100%);
            border: 1px outset #aaa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            color: #fff;
            text-shadow: 1px 1px 0 #000;
            font-weight: bold;
        }
        
        .y2k-banner {
            background: linear-gradient(180deg, #000066 0%, #000099 50%, #0000cc 100%);
            border-bottom: 2px solid #ffcc00;
            padding: 8px;
            text-align: center;
        }
        
        .y2k-banner p {
            color: #ffcc00;
            font-size: 12px;
            font-weight: bold;
            text-shadow: 1px 1px 2px #000;
        }
        
        .y2k-banner span {
            color: #fff;
        }
        
        /* Region page styles */
        .region-title {
            background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
            color: #fff;
            font-size: 32px;
            font-weight: bold;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-left: 8px solid #cc0000;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: Georgia, serif;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .region-title .region-icon-large {
            font-size: 36px;
        }
        
        .session-filter {
            background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
            border: 2px outset #ccc;
            padding: 10px 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .session-filter label {
            font-weight: bold;
            font-size: 14px;
            color: #333;
        }
        
        .session-filter select {
            padding: 8px 15px;
            font-size: 14px;
            border: 2px inset #ccc;
            background: #fff;
            cursor: pointer;
            min-width: 150px;
        }
        
        .session-filter select:hover {
            background: #f5f5f5;
        }
        
        .session-articles {
            display: block;
        }
        
        .session-articles.hidden {
            display: none;
        }
        
        .no-articles-message {
            background: #fff;
            border: 2px dashed #999;
            padding: 40px;
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .no-articles-message .empty-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        .no-articles-message p {
            margin-bottom: 10px;
        }
        
        .empty-content {
            background: #fff;
            border: 2px dashed #999;
            padding: 40px;
            text-align: center;
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .footer-page {
            background: #fff;
            border: 2px outset #ccc;
            padding: 30px;
            margin-bottom: 15px;
            box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
        }
        
        .footer-page h1 {
            font-family: Georgia, serif;
            font-size: 32px;
            color: #000033;
            margin-bottom: 15px;
            border-bottom: 3px double #003399;
            padding-bottom: 15px;
        }
        
        .footer-page h2 {
            font-family: Georgia, serif;
            font-size: 20px;
            color: #003399;
            margin: 25px 0 10px 0;
        }
        
        .footer-page p {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 15px;
        }
        
        .footer-page ul {
            margin: 10px 0 20px 20px;
        }
        
        .footer-page li {
            font-size: 14px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 8px;
        }
        
        .footer-page .contact-box {
            background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
            border: 1px solid #ccc;
            padding: 20px;
            margin: 20px 0;
        }
        
        .footer-page .contact-box h3 {
            font-size: 16px;
            color: #003399;
            margin-bottom: 10px;
        }
        
        .footer-page .job-listing {
            background: #fff;
            border: 1px solid #ddd;
            padding: 15px;
            margin: 15px 0;
        }
        
        .footer-page .job-listing h3 {
            font-size: 16px;
            color: #003399;
            margin-bottom: 5px;
        }
        
        .footer-page .job-listing .location {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .doomsday-clock {
            background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
            border: 3px outset #444;
            padding: 15px;
            text-align: center;
            color: #fff;
        }
        
        .doomsday-clock .clock-title {
            font-size: 11px;
            font-weight: bold;
            color: #ff6600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }
        
        .doomsday-clock .clock-face {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 10px auto;
            background: radial-gradient(circle, #fff 0%, #e0e0e0 70%, #999 100%);
            border-radius: 50%;
            border: 4px solid #333;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.3), 0 0 15px rgba(255,102,0,0.5);
        }
        
        .doomsday-clock .clock-marks {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .doomsday-clock .clock-12 {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            font-weight: bold;
            color: #cc0000;
        }
        
        .doomsday-clock .clock-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 8px;
            height: 8px;
            background: #333;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        
        .doomsday-clock .minute-hand {
            position: absolute;
            bottom: 50%;
            left: 50%;
            width: 4px;
            height: 45px;
            background: linear-gradient(180deg, #cc0000 0%, #990000 100%);
            transform-origin: bottom center;
            transform: translateX(-50%) rotate(-54deg);
            border-radius: 2px;
            box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .doomsday-clock .clock-label {
            font-size: 10px;
            color: #aaa;
            margin-bottom: 5px;
        }
        
        .doomsday-clock .clock-time {
            font-size: 18px;
            font-weight: bold;
            color: #ff3300;
            text-shadow: 0 0 10px rgba(255,51,0,0.7);
        }
        
        .doomsday-clock .clock-source {
            font-size: 9px;
            color: #666;
            margin-top: 8px;
        }
        
        .empty-content p {
            margin-bottom: 10px;
        }
        
        .empty-content .coming-soon {
            font-size: 18px;
            font-weight: bold;
            color: #990000;
        }
        
        /* Page container - hide/show */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        .service-coming-soon {
            background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
            border: 3px double #999;
            padding: 60px 40px;
            text-align: center;
            margin: 20px 0;
        }
        
        .service-coming-soon h2 {
            font-family: Georgia, serif;
            font-size: 32px;
            color: #003399;
            margin-bottom: 20px;
        }
        
        .service-coming-soon .coming-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }
        
        .service-coming-soon p {
            font-size: 16px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .service-coming-soon .coming-text {
            font-size: 24px;
            font-weight: bold;
            color: #cc0000;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        /* Article page styles */
        .article-page {
            background: #fff;
            border: 2px outset #ccc;
            padding: 25px 30px;
            margin-bottom: 15px;
            box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
        }
        
        .article-page h1 {
            font-family: Georgia, serif;
            font-size: 36px;
            color: #000033;
            margin-bottom: 15px;
            line-height: 1.2;
            border-bottom: 3px double #cc0000;
            padding-bottom: 15px;
        }
        
        .article-meta {
            color: #666;
            font-size: 12px;
            padding: 10px 15px;
            margin-bottom: 20px;
            background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
            border-left: 4px solid #003399;
            font-style: italic;
        }
        
        .article-body {
            font-size: 15px;
            line-height: 1.9;
            color: #333;
            column-count: 1;
        }
        
        .article-body p {
            margin-bottom: 18px;
            text-align: justify;
        }
        
        .article-body p:first-of-type::first-letter {
            font-size: 3.5em;
            float: left;
            line-height: 0.8;
            margin-right: 8px;
            margin-top: 5px;
            font-family: Georgia, serif;
            font-weight: bold;
            color: #cc0000;
        }
        
        .back-btn {
            display: inline-block;
            background: linear-gradient(180deg, #003399 0%, #000066 100%);
            color: #fff !important;
            padding: 8px 20px;
            text-decoration: none;
            font-size: 12px;
            font-weight: bold;
            border: 2px outset #6699ff;
            margin-bottom: 20px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .back-btn:hover {
            background: linear-gradient(180deg, #000066 0%, #003399 100%);
            border-style: inset;
        }
    
        /* MOBILE RESPONSIVE STYLES */
        @media (max-width: 1024px) {
            .container {
                width: 100%;
                padding: 0 10px;
            }
            
            .main-layout {
                grid-template-columns: 200px 1fr 250px;
            }
            
            .news-card-image {
                height: 120px;
            }
        }
        
        @media (max-width: 768px) {
            .top-banner {
                font-size: 10px;
                padding: 5px;
                flex-wrap: wrap;
                justify-content: center;
                gap: 5px;
            }
            
            .header {
                padding: 10px;
            }
            
            .logo {
                font-size: 36px;
            }
            
            .logo span {
                font-size: 10px;
            }
            
            .header-right {
                flex-direction: column;
                gap: 5px;
                font-size: 10px;
            }
            
            .nav-bar {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .region-list {
                flex-wrap: nowrap;
                justify-content: flex-start;
                gap: 5px;
                padding: 8px 10px;
            }
            
            .region-list a {
                padding: 8px 12px;
                font-size: 11px;
                white-space: nowrap;
                flex-shrink: 0;
            }
            
            .region-icon {
                display: none;
            }
            
            .main-layout {
                display: flex;
                flex-direction: column;
            }
            
            .sidebar-left {
                width: 100%;
                order: 3;
            }
            
            .content-main {
                width: 100%;
                order: 1;
                padding: 10px;
            }
            
            .sidebar-right {
                width: 100%;
                order: 2;
            }
            
            .featured-story {
                flex-direction: column;
            }
            
            .featured-image {
                width: 100%;
                height: 200px;
            }
            
            .featured-content h2 {
                font-size: 20px;
            }
            
            .featured-content p {
                font-size: 13px;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .news-card {
                display: flex;
                flex-direction: row;
            }
            
            .news-card-image {
                width: 120px;
                height: 100px;
                flex-shrink: 0;
            }
            
            .news-card-content {
                padding: 10px;
            }
            
            .news-card-content h3 {
                font-size: 14px;
            }
            
            .news-card-content .news-card-title {
                font-size: 14px;
            }
            
            .news-card-content p {
                font-size: 11px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .news-card-content .news-card-excerpt {
                font-size: 11px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .section-header {
                font-size: 16px;
                padding: 8px 12px;
            }
            
            .sidebar-box {
                margin-bottom: 10px;
            }
            
            .sidebar-box-header {
                font-size: 12px;
                padding: 8px 10px;
            }
            
            .sidebar-box-content {
                padding: 10px;
                font-size: 12px;
            }
            
            .scrolling-headlines {
                height: auto;
                max-height: 200px;
            }
            
            .headline-item {
                font-size: 11px;
                padding: 8px 10px;
            }
            
            .article-page {
                padding: 15px;
            }
            
            .article-page h1 {
                font-size: 24px;
            }
            
            .article-body {
                font-size: 14px;
            }
            
            .article-body p:first-of-type::first-letter {
                font-size: 2.5em;
            }
            
            .region-title {
                font-size: 24px;
                padding: 15px;
            }
            
            .region-icon-large {
                font-size: 28px;
            }
            
            .session-filter {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 10px;
            }
            
            .session-filter select {
                width: 100%;
            }
            
            .footer {
                padding: 15px 10px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-section {
                min-width: 100%;
            }
            
            .footer-section h5 {
                font-size: 13px;
            }
            
            .footer-bottom {
                font-size: 10px;
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .back-btn {
                font-size: 11px;
                padding: 8px 15px;
            }
            
            .service-coming-soon {
                padding: 30px 20px;
            }
            
            .service-coming-soon h2 {
                font-size: 24px;
            }
            
            .service-coming-soon .coming-icon {
                font-size: 48px;
            }
            
            .footer-page {
                padding: 15px;
            }
            
            .footer-page h1 {
                font-size: 24px;
            }
            
            .footer-page h2 {
                font-size: 18px;
            }
            
            .footer-page p, .footer-page li {
                font-size: 13px;
            }
            
            .job-listing {
                padding: 12px;
            }
            
            .contact-box {
                padding: 15px;
            }
            
            /* Doomsday clock mobile */
            .doomsday-clock .clock-face {
                width: 100px;
                height: 100px;
            }
            
            .doomsday-clock .minute-hand {
                height: 38px;
            }
            
            .doomsday-clock .clock-time {
                font-size: 16px;
            }
            
            /* Poll mobile */
            .poll-option {
                font-size: 12px;
                padding: 5px 0;
            }
            
            .poll-btn {
                width: 100%;
                padding: 10px;
            }
            
            .poll-result-bar-container {
                height: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 28px;
            }
            
            .news-card {
                flex-direction: column;
            }
            
            .news-card-image {
                width: 100%;
                height: 150px;
            }
            
            .featured-image {
                height: 180px;
            }
            
            .article-page h1 {
                font-size: 20px;
            }
            
            .region-title {
                font-size: 20px;
            }
        }
        
        /* Admin Panel Styles */
        /* ========== MODERN ADMIN PANEL ========== */
        .admin-login-btn {
            background: #374151;
            color: #fff;
            border: none;
            padding: 5px 12px;
            font-size: 11px;
            cursor: pointer;
            border-radius: 4px;
            margin-left: 10px;
            transition: background 0.2s;
        }
        .admin-login-btn:hover {
            background: #4b5563;
        }
        
        .admin-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(4px);
        }
        .admin-modal.active {
            display: flex;
        }
        
        .admin-login-box {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-width: 380px;
            width: 90%;
        }
        .admin-login-box h2 {
            color: #111;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .admin-login-box input {
            display: block;
            width: 100%;
            padding: 12px 16px;
            margin: 12px 0;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            color: #111;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .admin-login-box input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        .admin-login-box button {
            background: #3b82f6;
            color: #fff;
            border: none;
            padding: 12px 24px;
            cursor: pointer;
            font-weight: 500;
            margin-top: 16px;
            border-radius: 8px;
            font-size: 14px;
            width: 100%;
            transition: background 0.2s;
        }
        .admin-login-box button:hover {
            background: #2563eb;
        }
        .admin-login-box .close-btn {
            position: absolute;
            top: 16px;
            right: 20px;
            color: #9ca3af;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .admin-login-box .close-btn:hover {
            color: #111;
        }
        .admin-login-box .error-msg {
            color: #dc2626;
            font-size: 13px;
            margin-top: 12px;
        }
        
        .admin-panel {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #f3f4f6;
            z-index: 9999;
            overflow-y: auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        .admin-panel.active {
            display: block;
        }
        .admin-panel * {
            font-family: inherit;
        }
        
        .admin-header {
            background: #fff;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .admin-header h1 {
            color: #111;
            font-size: 20px;
            font-weight: 600;
        }
        .admin-header .logout-btn {
            background: #fee2e2;
            color: #dc2626;
            border: none;
            padding: 8px 16px;
            cursor: pointer;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            transition: background 0.2s;
        }
        .admin-header .logout-btn:hover {
            background: #fecaca;
        }
        
        .admin-content {
            display: flex;
            height: calc(100% - 60px);
        }
        
        .admin-sidebar {
            width: 240px;
            background: #fff;
            border-right: 1px solid #e5e7eb;
            padding: 16px 0;
            overflow-y: auto;
        }
        .admin-sidebar a {
            display: flex;
            align-items: center;
            color: #6b7280;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 14px;
            border-left: 3px solid transparent;
            transition: all 0.15s;
        }
        .admin-sidebar a:hover {
            background: #f9fafb;
            color: #111;
        }
        .admin-sidebar a.active {
            background: #eff6ff;
            color: #3b82f6;
            border-left-color: #3b82f6;
            font-weight: 500;
        }
        
        .admin-main {
            flex: 1;
            padding: 24px;
            overflow-y: auto;
            background: #f3f4f6;
        }
        
        .admin-section {
            display: none;
            color: #374151;
        }
        .admin-section.active {
            display: block;
        }
        .admin-section h2 {
            color: #111;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .article-list-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .article-list-table th {
            background: #f9fafb;
            color: #6b7280;
            padding: 12px 16px;
            text-align: left;
            font-weight: 500;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #e5e7eb;
        }
        .article-list-table td {
            padding: 14px 16px;
            border-bottom: 1px solid #f3f4f6;
            color: #374151;
            font-size: 14px;
        }
        .article-list-table tr:hover {
            background: #f9fafb;
        }
        .article-list-table tr:last-child td {
            border-bottom: none;
        }
        .article-list-table .action-btn {
            background: #f3f4f6;
            color: #374151;
            border: none;
            padding: 6px 12px;
            cursor: pointer;
            margin-right: 6px;
            font-size: 12px;
            border-radius: 4px;
            transition: all 0.15s;
        }
        .article-list-table .action-btn:hover {
            background: #e5e7eb;
        }
        .article-list-table .action-btn.edit {
            background: #dbeafe;
            color: #1d4ed8;
        }
        .article-list-table .action-btn.edit:hover {
            background: #bfdbfe;
        }
        .article-list-table .action-btn.delete {
            background: #fee2e2;
            color: #dc2626;
        }
        .article-list-table .action-btn.delete:hover {
            background: #fecaca;
        }
        
        .admin-form {
            background: #fff;
            padding: 24px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-top: 16px;
        }
        .admin-form label {
            display: block;
            color: #374151;
            margin-bottom: 6px;
            margin-top: 16px;
            font-weight: 500;
            font-size: 14px;
        }
        .admin-form label:first-child {
            margin-top: 0;
        }
        .admin-form input[type="text"],
        .admin-form select,
        .admin-form textarea {
            width: 100%;
            padding: 10px 14px;
            background: #fff;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            color: #111;
            font-size: 14px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .admin-form input[type="text"]:focus,
        .admin-form select:focus,
        .admin-form textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        .admin-form textarea {
            min-height: 180px;
            resize: vertical;
            line-height: 1.5;
        }
        .admin-form .form-row {
            display: flex;
            gap: 16px;
        }
        .admin-form .form-row > div {
            flex: 1;
        }
        .admin-form .submit-btn {
            background: #3b82f6;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            margin-top: 20px;
            border-radius: 6px;
            font-size: 14px;
            transition: background 0.2s;
        }
        .admin-form .submit-btn:hover {
            background: #2563eb;
        }
        .admin-form .cancel-btn {
            background: #f3f4f6;
            color: #374151;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            margin-top: 20px;
            margin-left: 8px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            transition: background 0.2s;
        }
        .admin-form .cancel-btn:hover {
            background: #e5e7eb;
        }
        
        /* ====== Article Editor Styles ====== */
        .article-editor-container {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 24px;
            margin-top: 20px;
        }
        
        .article-editor-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .editor-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }
        
        .editor-card-header {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 14px 18px;
            font-weight: 600;
            font-size: 14px;
            color: #334155;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .editor-card-icon {
            font-size: 16px;
        }
        
        .optional-badge {
            margin-left: auto;
            background: #e2e8f0;
            color: #64748b;
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 500;
        }
        
        .editor-card-body {
            padding: 18px;
        }
        
        .editor-field {
            margin-bottom: 16px;
        }
        
        .editor-field:last-child {
            margin-bottom: 0;
        }
        
        .editor-field label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 6px;
        }
        
        .editor-field input[type="text"],
        .editor-field select,
        .editor-field textarea {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.2s;
            background: #fff;
            color: #111;
        }
        
        .editor-field input[type="text"]:focus,
        .editor-field select:focus,
        .editor-field textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
        }
        
        .editor-field textarea {
            min-height: 80px;
            resize: vertical;
            line-height: 1.5;
        }
        
        .editor-field textarea#article-summary {
            min-height: 70px;
        }
        
        .editor-field textarea.body-editor {
            min-height: 250px;
            font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
            font-size: 13px;
            line-height: 1.6;
        }
        
        .field-hint {
            display: block;
            font-size: 11px;
            color: #9ca3af;
            margin-top: 5px;
        }
        
        .editor-field-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        .editor-field-row.three-col {
            grid-template-columns: 1fr 1fr 1fr;
        }
        
        /* Region Selector */
        .region-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .region-option {
            margin: 0;
        }
        
        .region-option input {
            display: none;
        }
        
        .region-chip {
            display: inline-block;
            padding: 8px 14px;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
            background: #f9fafb;
            color: #374151;
        }
        
        .region-option input:checked + .region-chip {
            border-color: #3b82f6;
            background: #eff6ff;
            color: #1d4ed8;
            font-weight: 500;
        }
        
        .region-chip:hover {
            border-color: #93c5fd;
            background: #f0f9ff;
        }
        
        /* Quick Bylines */
        .quick-bylines {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
        }
        
        .byline-chip {
            padding: 5px 10px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 11px;
            background: #f9fafb;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.15s;
        }
        
        .byline-chip:hover {
            background: #e5e7eb;
            border-color: #9ca3af;
        }
        
        /* Editor Toolbar */
        .editor-toolbar {
            display: flex;
            gap: 4px;
            padding: 8px;
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-bottom: none;
            border-radius: 8px 8px 0 0;
            margin-bottom: -1px;
        }
        
        .editor-toolbar button {
            padding: 6px 12px;
            border: 1px solid #d1d5db;
            border-radius: 5px;
            background: #fff;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.15s;
            color: #374151;
        }
        
        .editor-toolbar button:hover {
            background: #e5e7eb;
        }
        
        .toolbar-divider {
            width: 1px;
            background: #e5e7eb;
            margin: 0 6px;
        }
        
        .editor-field textarea.body-editor {
            border-radius: 0 0 8px 8px;
        }
        
        /* Image Upload Tabs */
        .image-upload-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }
        
        .image-tab {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid #e5e7eb;
            background: #f9fafb;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .image-tab:hover {
            border-color: #d1d5db;
            background: #f3f4f6;
        }
        
        .image-tab.active {
            border-color: #3b82f6;
            background: #eff6ff;
            color: #1d4ed8;
        }
        
        .image-panel {
            margin-bottom: 16px;
        }
        
        /* Upload Dropzone */
        .upload-dropzone {
            border: 2px dashed #d1d5db;
            border-radius: 12px;
            padding: 32px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            background: #fafafa;
        }
        
        .upload-dropzone:hover {
            border-color: #3b82f6;
            background: #f0f9ff;
        }
        
        .upload-dropzone.drag-over {
            border-color: #3b82f6;
            background: #eff6ff;
            border-style: solid;
        }
        
        .dropzone-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        
        .dropzone-icon {
            font-size: 32px;
            opacity: 0.8;
        }
        
        .dropzone-text {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
        }
        
        .dropzone-hint {
            font-size: 12px;
            color: #9ca3af;
        }
        
        /* Quick Images (URL tab) */
        .quick-images {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            margin-top: 12px;
        }
        
        .image-chip {
            padding: 5px 10px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 11px;
            background: #f9fafb;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.15s;
        }
        
        .image-chip:hover {
            background: #e5e7eb;
            border-color: #9ca3af;
        }
        
        /* Image Preview Container */
        .image-preview-container {
            margin-top: 16px;
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
        }
        
        .image-preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .image-preview-title {
            font-size: 12px;
            font-weight: 600;
            color: #374151;
        }
        
        .remove-image-btn {
            padding: 4px 10px;
            border: 1px solid #fecaca;
            background: #fef2f2;
            color: #dc2626;
            border-radius: 5px;
            font-size: 11px;
            cursor: pointer;
            transition: all 0.15s;
        }
        
        .remove-image-btn:hover {
            background: #fee2e2;
            border-color: #f87171;
        }
        
        /* Image Preview Box */
        .image-preview-box {
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9fafb;
            overflow: hidden;
        }
        
        .image-preview-box.has-image {
            background: #1e293b;
        }
        
        .image-preview-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .image-preview-box .no-image-text {
            color: #9ca3af;
            font-size: 13px;
        }
        
        .image-info {
            padding: 8px 14px;
            background: #f8fafc;
            border-top: 1px solid #e5e7eb;
            font-size: 11px;
            color: #6b7280;
        }
        
        /* No Image Placeholder */
        .no-image-placeholder {
            margin-top: 16px;
            padding: 20px;
            border: 2px dashed #e5e7eb;
            border-radius: 10px;
            text-align: center;
            background: #fafafa;
        }
        
        .no-image-placeholder .no-image-text {
            color: #9ca3af;
            font-size: 13px;
        }
        
        /* Editor Actions */
        .editor-actions {
            display: flex;
            gap: 10px;
            padding: 20px 0;
        }
        
        .editor-actions .submit-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
        }
        
        .editor-actions .submit-btn:hover {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
        }
        
        .editor-actions .cancel-btn {
            background: #fff;
            color: #6b7280;
            border: 1px solid #d1d5db;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .editor-actions .cancel-btn:hover {
            background: #f3f4f6;
            border-color: #9ca3af;
        }
        
        /* Preview Panel */
        .article-editor-preview {
            position: sticky;
            top: 20px;
            height: fit-content;
        }
        
        .preview-header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: #fff;
            padding: 12px 16px;
            border-radius: 12px 12px 0 0;
            font-weight: 600;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .preview-icon {
            font-size: 14px;
        }
        
        .preview-content {
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            border-top: none;
            border-radius: 0 0 12px 12px;
            padding: 16px;
            max-height: calc(100vh - 180px);
            overflow-y: auto;
        }
        
        /* Preview Card */
        .preview-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 16px;
        }
        
        .preview-card-region {
            background: #f8fafc;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: 600;
            color: #64748b;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .preview-card-image {
            height: 100px;
            background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 12px;
            overflow: hidden;
        }
        
        .preview-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .preview-card-body {
            padding: 12px;
        }
        
        .preview-card-headline {
            font-size: 14px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 8px 0;
            line-height: 1.3;
        }
        
        .preview-card-summary {
            font-size: 12px;
            color: #64748b;
            line-height: 1.5;
            margin: 0 0 10px 0;
        }
        
        .preview-card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            color: #94a3b8;
        }
        
        /* Full Article Preview */
        .preview-article-view {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .preview-article-header {
            padding: 16px;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .preview-article-header h2 {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 8px 0;
            line-height: 1.3;
        }
        
        .preview-article-byline {
            font-size: 11px;
            color: #3b82f6;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .preview-article-date {
            font-size: 11px;
            color: #94a3b8;
            margin-top: 4px;
        }
        
        .preview-article-body {
            padding: 16px;
            font-size: 12px;
            color: #374151;
            line-height: 1.6;
            max-height: 200px;
            overflow-y: auto;
        }
        
        .preview-article-body p {
            margin: 0 0 12px 0;
        }
        
        .preview-article-body p:last-child {
            margin-bottom: 0;
        }
        
        /* Responsive adjustments for article editor */
        @media (max-width: 1024px) {
            .article-editor-container {
                grid-template-columns: 1fr;
            }
            
            .article-editor-preview {
                position: static;
                order: -1;
            }
            
            .editor-field-row.three-col {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 640px) {
            .editor-field-row,
            .editor-field-row.three-col {
                grid-template-columns: 1fr;
            }
            
            .region-selector {
                flex-direction: column;
            }
            
            .region-chip {
                text-align: center;
            }
        }
        /* ====== End Article Editor Styles ====== */
        
        .homepage-slot {
            background: #f9fafb;
            padding: 16px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
        }
        .homepage-slot label {
            margin-top: 0 !important;
            font-size: 13px;
            color: #6b7280;
        }
        .homepage-select {
            margin-top: 8px;
        }
        
        .session-tag-manager {
            margin-top: 24px;
        }
        .session-tag {
            display: inline-flex;
            align-items: center;
            background: #dbeafe;
            color: #1d4ed8;
            padding: 6px 12px;
            margin: 4px;
            border-radius: 20px;
            font-size: 13px;
        }
        .session-tag .delete-tag {
            color: #dc2626;
            margin-left: 8px;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
        }
        .session-tag .delete-tag:hover {
            color: #b91c1c;
        }
        .add-session-form {
            margin-top: 16px;
            display: flex;
            gap: 8px;
        }
        .add-session-form input {
            padding: 8px 12px;
            background: #fff;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            color: #111;
            width: 220px;
            font-size: 14px;
        }
        .add-session-form input:focus {
            outline: none;
            border-color: #3b82f6;
        }
        .add-session-form button {
            background: #3b82f6;
            color: #fff;
            border: none;
            padding: 8px 16px;
            cursor: pointer;
            border-radius: 6px;
            font-size: 14px;
            transition: background 0.2s;
        }
        .add-session-form button:hover {
            background: #2563eb;
        }
        
        .admin-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }
        .stat-box {
            background: #fff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .stat-box .stat-number {
            font-size: 32px;
            color: #111;
            font-weight: 600;
        }
        .stat-box .stat-label {
            color: #6b7280;
            font-size: 13px;
            margin-top: 4px;
        }
        
        .admin-toast {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #059669;
            color: #fff;
            padding: 14px 24px;
            border-radius: 8px;
            display: none;
            z-index: 10001;
            font-size: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .admin-toast.error {
            background: #dc2626;
        }
        .admin-toast.active {
            display: block;
        }
        
        @media (max-width: 768px) {
            .admin-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .admin-sidebar {
                width: 200px;
            }
            .admin-form .form-row {
                flex-direction: column;
            }
        }
