* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.trending-tags-title {
    color: #ffb80c;
}

.breaking-bar {
    background: #111;
    padding: 10px 0;
}

.breaking-label {
    background: #f4a706;
    color: #000;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 3px;
    margin-right: 12px;
}

.breaking-text {
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 17px;
    margin-right: 15px;
}

.navbar-dark .dropdown-menu {
    background: #000;
    border: 1px solid #333;
}

.navbar-dark .dropdown-item {
    color: #fff;
}

.navbar-dark .dropdown-item:hover {
    background: #333;
}

.breaking-bar {
    background: #111;
    color: #fff;
    overflow: hidden;
}

.breaking-label {
    font-weight: bold;
    font-size: 16px;
    padding: 4px 10px;
    background: #fff;
    border-radius: 4px;
    min-width: 140px;
}

/* Wrapper for fade items */
.fade-wrapper {
    position: relative;
    height: 30px;
    width: 100%;
    overflow: hidden;
}

/* Base style for items */
.fade-item {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 15px;
    animation: fadeCycle 49s infinite;
}

/* Animation timing for each message */
.fade-item:nth-child(1) {
    animation-delay: 0s;
}

.fade-item:nth-child(2) {
    animation-delay: 7s;
}

.fade-item:nth-child(3) {
    animation-delay: 14s;
}

.fade-item:nth-child(4) {
    animation-delay: 21s;
}

.fade-item:nth-child(5) {
    animation-delay: 28s;
}

.fade-item:nth-child(6) {
    animation-delay: 35s;
}

.fade-item:nth-child(7) {
    animation-delay: 42s;
}

/* keyframes:
   0–1s = fade in
   1–6s = visible (5 sec)
   6–7s = fade out
*/
@keyframes fadeCycle {
    0% {
        opacity: 0;
    }

    2% {
        opacity: 1;
    }

    12% {
        opacity: 1;
    }

    14% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


/* Black overlay */
.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* adjust opacity here */
    z-index: 1;
    border-radius: 12px;
}

/* Make caption appear above overlay */
.carousel-caption {
    z-index: 2;
}

/* Zoom-in-out animation */
.img-zoom {
    animation: zoomEffect 7s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    /* slight smooth zoom */
    100% {
        transform: scale(1);
    }
}

/* Improve text visibility */
.carousel-caption h2,
.carousel-caption p {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

/* Add vertical dotted line only on large screens */
@media (min-width: 992px) {

    /* lg breakpoint */
    .left-col {
        border-right: 2px dotted #fff;
        /* vertical dotted line */
        padding-right: 30px;
        /* space for the divider */
    }

    .right-col {
        padding-left: 30px;
        /* space from divider */
    }
}

.recent-posts ul li {
    border-bottom: 1px dotted #fff;
    /* dotted line below each item */
    padding: 8px 0;
}

.recent-posts ul li:last-child {
    border-bottom: none;
    /* remove line under last item */
}

.recent-posts ul li a {
    text-decoration: none;
    /* keep links clean */
    color: #fff;
}

.image-wrapper {
    height: 400px;
    /* adjust height if needed */
    position: relative;
}

/* Zoom effect only on image */
.zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 7s ease-in-out infinite;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

/* Optional clean spacing */
.text-block span {
    font-weight: bold;
}



.notice-wrap {
    max-width: 920px;
    margin: 0 auto;
}


.notice {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    color: #f8fafc;
    padding: 28px 28px 28px 36px;
    border-left: 6px solid #ffffff;
    /* left accent */
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(2, 6, 23, 0.6);
    position: relative;
    line-height: 1.6;
}


.notice h3 {
    margin-top: 2px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
}


.muted-small {
    font-size: 0.90rem;
    opacity: 0.85;
    margin-bottom: 12px;
}


.notice p {
    margin-bottom: 10px;
    white-space: pre-line;
    /* preserve line breaks if pasted */
}


.bullet-list {
    margin: 8px 0 0 0;
    padding: 0 0 0 16px;
    color: #e6eef8;
}


.bullet-list li {
    margin-bottom: 8px;
}


.bullet-list li strong {
    display: inline-block;
    min-width: 10px;
}


/* small help text at bottom */
.notice .hint {
    font-size: 0.87rem;
    opacity: 0.75;
    margin-top: 12px;
}


/* Responsive tweaks */
@media (max-width: 576px) {
    .notice {
        padding-left: 18px;
        padding-right: 18px;
    }

    .notice h3 {
        font-size: 1rem;
    }
}

.agent-table {
    color: #fff;
    background: #1c1c1c;
    border: 2px solid #d4d3d3;
    width: 100%;
}

.agent-table th {
    background: #232323 !important;
    color: #fff !important;
    font-weight: 600;
    border: 1px solid #3c3c3c;
    padding: 10px;
    text-align: center;
}

.agent-table td {
    border: 1px solid #e4e2e2;
    padding: 10px 12px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    background: #191919;
      color: #fff !important;
}

.agent-table tr:hover td {
    background: #2a2a2a !important;
}

.complain-btn {
    color: #fff;
    padding: 6px 10px;
    display: inline-block;
    font-size: 13px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 4px;
    text-decoration: none;
}

.site-icons span {
    display: block;
    margin: 2px 0;
    white-space: nowrap;
}