:root {
    --primary-color: #0E1E32;
    --secondary-color: #12253E;
    --tertiary-color: #010080;
    --background-color: #CFF5E7;
    --bg-gradient: linear-gradient(135deg, #F3F3F3 0%, #ebebeb 100%);
    --veye-green: #1BB087;
    --veye-purple: #0E1E32;

    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --text-dark-color: #183354;
    --text-light-color: #f8f9fa;

    --gradient-blue: linear-gradient(137deg, #2F88FF 19.41%, #1D68CD 65.49%);

    --font-family: 'Inter', 'Arial', sans-serif;
    --font-size-base: 15px;
    --line-height-base: 1.6;

    --container-width: 1200px;

    --main-heading-font-size: 2rem;
    --sub-heading-font-size: 1.5rem;
    --paragraph-font-size: 1rem;
    --disclaimer-font-size: 0.875rem;
    --terms-font-size: 0.875rem;

    --card-shadow: 0 2px 14px rgba(14,30,50,0.08);
    --card-shadow-hover: 0 8px 28px rgba(14,30,50,0.16);
    --card-radius: 12px;
}

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark-color);
    background-color: #f0f2f5;
}

/* Genric */
.br-no-border {
    border: 0px
}

.btn-purple {
    background-color: var(--veye-purple);
    color: var(--text-light-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.btn-purple:hover {
    background-color: var(--veye-green);
    color: var(--text-light-color);
}

.homepage-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark-color);
    margin-bottom: 2px;
}

.fade-content {
    -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent);
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}


/* Veye Input Field */
.veye-form .form-control {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.veye-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.veye-form .range-control {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

.veye-form .input-box {
    position: relative;
    margin: 10px 0;
}

.veye-form .input-box .form-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

.veye-form .input-box .form-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

.veye-form .input-box.focus .form-label,
.veye-form .input-box.active .form-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

.veye-form .input-box.focus .form-label svg,
.veye-form .input-box.active .form-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}

.veye-form .form-select {
    border-radius: 0.5rem;
    border: solid 1px rgba(108, 106, 106, 0.65);
    line-height: 2rem;
}

.veye-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}


/* Breadcrumb */
.breadcrumb {
    padding: 12px 16px;
    border-radius: 4px;
}

.breadcrumb-item {
    display: inline-block;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--text-dark-color);
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 8px;
    color: var(--text-dark-color);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(14, 30, 50, 0.15);
}

/* --- Top Strip --- */
.header-top-strip {
    background-color: var(--primary-color);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-social-icons a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.22s ease;
    line-height: 1;
}

.header-social-icons a:hover {
    color: var(--veye-green);
}

.header-search-form {
    flex-shrink: 0;
}

.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-wrap .header-search-icon {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    pointer-events: none;
}

.header-search-wrap input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 5px 18px 5px 36px;
    color: #fff;
    font-size: 0.82rem;
    width: 260px;
    transition: border-color 0.22s ease, background 0.22s ease, width 0.3s ease;
    outline: none;
}

.header-search-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-wrap input:focus {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: var(--veye-green);
    width: 320px;
}

/* --- Main Navbar --- */
.veye-main-navbar {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(14, 30, 50, 0.07);
}

.veye-main-navbar .main-logo {
    width: 110px;
    height: auto;
}

.veye-main-navbar .navbar-nav .nav-link {
    color: var(--text-dark-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 10px;
    transition: color 0.22s ease;
    white-space: nowrap;
}

.veye-main-navbar .navbar-nav .nav-link:hover,
.veye-main-navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--veye-green);
}

.veye-main-navbar .navbar-nav .nav-item.active .nav-link {
    font-weight: 700;
}

.veye-main-navbar .dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    border: none;
    box-shadow: var(--card-shadow-hover);
    border-radius: 10px;
    padding: 6px 0;
    margin-top: 4px;
}

.veye-main-navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.veye-main-navbar .dropdown-item {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark-color);
    padding: 7px 18px;
    transition: background 0.18s ease, color 0.18s ease;
}

.veye-main-navbar .dropdown-item:hover {
    background-color: #f0f7f4;
    color: var(--veye-green);
}

/* --- Sign In button --- */
.btn-signin {
    background-color: var(--primary-color);
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 25px;
    border: none;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-signin:hover {
    background-color: var(--veye-green);
    transform: translateY(-1px);
}

.btn-register {
    background-color: transparent;
    color: var(--primary-color) !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 25px;
    border: 1.5px solid var(--primary-color);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-register:hover {
    background-color: var(--primary-color);
    color: #fff !important;
    transform: translateY(-1px);
}

/* --- Notification icon button --- */
.btn-notification-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: var(--text-dark-color) !important;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid #e2e6ea;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn-notification-icon:hover {
    background-color: var(--veye-green);
    color: #fff !important;
    border-color: var(--veye-green);
}

/* --- Mobile toggler --- */
.veye-toggler {
    border: 1.5px solid var(--primary-color);
    border-radius: 8px;
    padding: 5px 10px;
    color: var(--primary-color);
    background: transparent;
    font-size: 1.3rem;
    line-height: 1;
}

.veye-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Keep old bottom-navbar overrides from clobbering the new ones */
.header .veye-bottom-navbar {
    display: none;
}



/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #fff;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 50s linear infinite;
}

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

    100% {
        transform: translateX(-100%);
    }
}

.marquee-tile {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    max-width: 220px;
}

.circular-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--text-light-color);
    font-size: 0.9rem;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.stock-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stock-info .stock-up {
    color: #19AE57;
    font-weight: bold;
}

.stock-info .stock-down {
    color: #E70000;
    font-weight: bold;
}


/* High Low Charts Section — tabs inside card */
.high-low-charts-section .stocks-tab-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: none;
}

.high-low-charts-section .stocks-tab-card > .card-header {
    background-color: var(--primary-color);
    border-bottom: none;
    padding: 0 12px;
}

.high-low-charts-section .card-header-tabs {
    border-bottom: none;
    gap: 2px;
    margin: 0;
}

.high-low-charts-section .card-header-tabs .nav-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 0;
    padding: 10px 12px;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.high-low-charts-section .card-header-tabs .nav-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.high-low-charts-section .card-header-tabs .nav-link.active {
    color: #fff;
    background: transparent;
    border-bottom: 2px solid var(--veye-green);
}

.high-low-charts-section .stocks-tab-card .card-body {
    padding: 0;
}


/* Footer */
.veye-footer {
    background-color: var(--primary-color);
    color: var(--text-light-color);
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.veye-footer .footer-logo {
    width: 150px;
    height: auto;
}

.veye-footer .disclaimer {
    font-size: 0.8rem;
    color: var(--text-light-color);
    margin-top: 10px;
}

.veye-footer .footer-bottom .footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFF7DB;
}

.veye-footer .footer-bottom .footer-desc {
    font-size: 0.9rem;
    color: var(--text-light-color);
    margin-top: 5px;
}

.veye-footer .desclaimer-desc {
    font-size: 0.8rem;
    color: var(--text-light-color);
    margin-top: 10px;
}

.veye-footer .useful-links .social-icons i {
    color: var(--text-light-color);
}

.veye-footer .footer-bottom li a {
    font-size: 0.9rem;
    color: var(--text-light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.veye-footer .footer-bottom li a:hover {
    color: var(--warning-color);
}

.veye-footer .footer-bottom li i {
    color: var(--light-color);
    position: relative;
    right: 5px;
}

.veye-footer .footer-bottom .certification-img {
    width: 70px;
    height: auto;
    margin-top: 10px;
}

.veye-footer .footer-last-line a {
    color: var(--text-light-color);
    text-decoration: none;
}

/* ===================================================
   WATCHLIST SECTION
   =================================================== */

.asx-watchlist {
    margin: 0;
    padding: 0;
    --bs-gutter-y: 0;
}

.watchlist-table {
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    width: 100%;
}

.watchlist-table .table {
    margin-bottom: 0;
    border-radius: 0;
}

.watchlist-table .table thead {
    vertical-align: middle;
}

.watchlist-table .table thead th {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    border: none;
    white-space: nowrap;
}

.watchlist-table .table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.18s ease;
}

.watchlist-table .table tbody tr:last-child {
    border-bottom: none;
}

.watchlist-table .table tbody tr:hover {
    background-color: #f5fbf9;
}

.watchlist-table .table tbody td {
    padding: 10px 14px;
    vertical-align: middle;
    border: none;
    font-size: 0.82rem;
}

.stock-symbol {
    display: inline-block;
    background-color: #eef6f3;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 5px;
    letter-spacing: 0.4px;
}

.stock-company {
    color: #4a5568;
    font-size: 0.8rem;
    font-weight: 500;
}

.stock-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.stock-change {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.stock-change.up {
    color: #16a34a;
    background-color: #dcfce7;
}

.stock-change.down {
    color: #dc2626;
    background-color: #fee2e2;
}

.watchlist-star {
    font-size: 0.9rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s ease;
}

.watchlist-star.active {
    color: #f59e0b;
}

.watchlist-star:hover {
    color: #f59e0b;
}

/* ===================================================
   CATEGORIES SECTION
   =================================================== */

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 90px;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    text-decoration: none;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 20, 0.82) 40%, rgba(5, 10, 20, 0.30) 100%);
    transition: background 0.28s ease;
    border-radius: 0;
}

.category-item:hover .category-overlay {
    background: linear-gradient(to top, rgba(5, 10, 20, 0.90) 40%, rgba(5, 10, 20, 0.45) 100%);
}

.category-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 14px;
    width: 100%;
}

.category-icon {
    font-size: 1.1rem;
    color: var(--veye-green);
    margin-bottom: 3px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.category-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.category-count {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}



/* ===================================================
   ENHANCED COMPONENTS & DESIGN SYSTEM
   =================================================== */

/* --- Global Card Improvements --- */
.card {
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
    background-color: #ffffff;
}

.card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

/* --- Section Separators & Headings --- */
.veye-seperator {
    height: 3px;
    background: linear-gradient(90deg, var(--veye-green) 0%, var(--primary-color) 60%, transparent 100%);
    border-radius: 2px;
    width: 100%;
    margin-bottom: 0;
}

.section-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--veye-green), #0e9070);
    border-radius: 3px;
}

/* --- Time/Date Metadata --- */
.time-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    color: #7a8a9a;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.time-date i {
    color: var(--veye-green);
    font-size: 0.72rem;
}

/* --- Hollow Badge --- */
.hollow-badge {
    display: inline-block;
    padding: 2px 10px;
    border: 1.5px solid var(--veye-green);
    color: var(--veye-green);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

/* --- Bootstrap Badge Override --- */
.badge {
    background-color: var(--veye-green) !important;
    color: #fff !important;
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* --- Info Line (author / category / date row) --- */
.info-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    font-size: 0.76rem;
    color: #6c757d;
    margin: 8px 0 10px;
}

.info-line i {
    color: var(--veye-green);
    margin-right: 3px;
}

/* --- Numbered Badge (Most Read) --- */
.numbered-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a5e);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 8px;
    flex-shrink: 0;
}

/* --- Section Label (Most Read title) --- */
.section-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    padding-left: 14px;
    position: relative;
    margin-bottom: 12px;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--veye-green), #0e9070);
    border-radius: 2px;
}

/* --- Image Wrapper Cards (Breaking News / Overlay) --- */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    display: block;
}

.image-wrapper img.card-img-top {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.image-wrapper:hover img.card-img-top {
    transform: scale(1.06);
}

.image-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,42,0.88) 40%, rgba(10,22,42,0.15) 100%);
    border-radius: var(--card-radius);
    pointer-events: none;
}

.image-wrapper .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 14px;
    color: #fff;
    background: transparent;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
}

.image-wrapper .card-body .card-title {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.35;
}

.image-wrapper .card-body .card-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.74rem;
    margin: 0;
}

.image-wrapper .card-body .badge {
    background-color: var(--veye-green) !important;
}

/* --- Buttons --- */
.btn-view-all {
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.78rem;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 600;
    background: transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-view-all:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-read-more {
    border: 1.5px solid var(--veye-green);
    color: var(--veye-green);
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    background: transparent;
    transition: all 0.25s ease;
}

.btn-read-more:hover {
    background-color: var(--veye-green);
    color: #fff;
}

/* ===================================================
   HOME SECTION
   =================================================== */

.home-section {
    margin-top: 0.5rem;
}

.home-section .card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 6px;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--veye-green);
}

.home-section .card-text {
    font-size: 0.8rem;
    color: #5a6a7a;
    line-height: 1.55;
    margin-bottom: 4px;
}

.home-section .card-body {
    padding: 1rem;
}

/* --- Side small news column --- */
.side-news-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-news-col .card {
    border-left: 3px solid var(--veye-green);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

/* --- Featured (large) news card --- */
.featured-news-card .card-img-top {
    /* height: 200px; */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.featured-news-card .card-title {
    font-size: 1.1rem !important;
    font-weight: 800;
    margin-top: 8px;
    line-height: 1.4;
    color: var(--primary-color);
}

/* --- Stock Cards row --- */
.stock-cards .card {
    border-top: 3px solid var(--veye-green);
}

.stock-cards .card-title {
    font-size: 0.88rem !important;
    font-weight: 700;
}

/* --- ASX Announcements --- */
.asx-anouncements .card-body img {
    width: 150px;
    min-width: 150px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.asx-anouncements .badge {
    background-color: var(--primary-color) !important;
}

.asx-anouncements .col-4 .card {
    border-left: 3px solid var(--veye-green);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
}

.asx-anouncements .col-4 .card-body {
    padding: 0.75rem 1rem;
    align-items: flex-start !important;
}

.asx-anouncements .col-4 .card-title {
    font-size: 0.83rem !important;
    margin-bottom: 4px;
    font-weight: 700;
}

/* ===================================================
   RIGHT SIDEBAR
   =================================================== */

.right-section {
    padding-left: 20px;
}

/* --- Risers / Chart table --- */
.risers-chart-table {
    width: 100%;
    border-collapse: collapse;
}

.risers-chart-table thead th {
    background-color: #f0f2f5;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    border-bottom: 2px solid var(--veye-green);
}

.risers-chart-table tbody tr {
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.2s ease;
}

.risers-chart-table tbody tr:hover {
    background-color: #f5fbf9;
}

.risers-chart-table tbody td {
    font-size: 0.8rem;
    padding: 7px 10px;
    color: var(--text-dark-color);
    font-weight: 500;
}

.risers-chart-table tbody td:nth-child(2) {
    font-weight: 700;
}

.risers-chart-table td.change-up {
    color: #19AE57;
    font-weight: 700;
}

.risers-chart-table td.change-down {
    color: #e53935;
    font-weight: 700;
}

/* --- Most Read --- */
.most-read .card {
    border-radius: var(--card-radius);
}

.most-read .card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.75rem 1rem;
}

.most-read-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.most-read .card-title {
    font-size: 0.86rem !important;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 1.4;
}

/* ===================================================
   MARQUEE / STOCK TICKER
   =================================================== */

.marquee-container {
    /* border-top: 2px solid var(--veye-green); */
    border-bottom: 1px solid #e0e5ec;
    background: #FDF8F0;
    padding: 6px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.marquee-tile {
    border-right: 1px solid #e0e5ec;
    padding: 4px 22px;
}

.stock-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stock-info .symbol-name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stock-info .symbol-name .name {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stock-info .symbol-name .symbol {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.stock-info .price-change {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 2px;
}

.stock-info .price-change .price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stock-info .price-change .change {
    font-size: 0.72rem;
    font-weight: 700;
}

/* ===================================================
   BREAKING NEWS SECTION
   =================================================== */

.trending-market-news h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.trending-market-news h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--veye-green), #0e9070);
    border-radius: 3px;
}

.trending-market-news .image-wrapper img.card-img-top {
    height: 220px;
}

.breaking-news-card {
    border-radius: var(--card-radius);
    overflow: hidden;
}

.breaking-news-card .breaking-news-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.breaking-news-card:hover .breaking-news-img {
    transform: scale(1.04);
}

.breaking-news-card .card-body {
    padding: 12px 14px 14px;
    background: #fff;
}

.breaking-news-card .card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 6px;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* ===================================================
   BOTTOM NEWS POSTS
   =================================================== */

.bottom-part .section-heading {
    font-size: 1.4rem;
}

.bottom-part .news-posts .card-title {
    font-size: 0.92rem;
    font-weight: 700;
}

.bottom-part .news-posts .card-body {
    padding: 1rem;
}

.bottom-part .news-posts .image-wrapper img.card-img-top {
    height: 180px;
}

/* ===================================================
   SUBSCRIBE SECTION
   =================================================== */

.subscribe {
    background: linear-gradient(135deg, #E8F1F1 0%, #E8F1F1 50%, #E8F1F1 100%);
    padding: 64px 0;
    margin-top: 3rem !important;
}

.subscribe-section {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center !important;
}

.subscribe h2 {
    color: #000;
    font-size: 1.85rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.subscribe-form {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-form .form-control {
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
    font-size: 0.88rem;
    min-width: 180px;
    background-color: rgba(255, 255, 255, 0.836);
    color: #000;
    backdrop-filter: blur(4px);
}

.subscribe-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.65);
}

.subscribe-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(27, 176, 135, 0.5);
    background-color: rgba(255, 255, 255, 0.18);
}

.subscribe-form .btn-primary {
    background-color: var(--veye-green);
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.25s ease, transform 0.2s ease;
}

.subscribe-form .btn-primary:hover {
    background-color: #16987a;
    transform: translateY(-1px);
}

.subscribe .follow-us {
    text-align: center;
}

.subscribe .follow-us h4 {
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.subscribe .social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.subscribe .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.28s ease, transform 0.22s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe .social-icon:hover {
    background: var(--veye-green);
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--veye-green);
}

/* ===================================================
   FOOTER ENHANCEMENTS
   =================================================== */

.veye-footer {
    padding-top: 40px;
    padding-bottom: 0;
}

.veye-footer .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
}

.veye-footer .footer-middle {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.veye-footer .footer-bottom li {
    margin-bottom: 7px;
}

.veye-footer .footer-last-line {
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.veye-footer .footer-heading {
    margin-bottom: 14px;
}

.veye-footer .footer-heading.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 14px !important;
}

.veye-footer .footer-heading.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.veye-footer .footer-heading.social-icons a:hover {
    color: var(--veye-green);
}

/* ===================================================
   HEADER IMPROVEMENTS — handled in main Header block above
   =================================================== */


