/* CayThue24 Style - Light Theme */
:root {
    --primary-color: #f34f2d;
    /* Orange */
    --primary-hover: #d9401e;
    --bg-color: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #eeeeee;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
    --topbar-bg: #202020;
    --topbar-text: #ffffff;
    --footer-bg: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --radius: 4px;
}

body {
    background-color: #f9f9f9;
    /* Light gray background for contrast */
    color: var(--text-color);
    font-family: 'Roboto', 'Open Sans', sans-serif;
}

/* ================= HEADER ================= */
.topbar {
    background-color: var(--topbar-bg) !important;
    color: var(--topbar-text);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: none !important;
}

.topbar .container {
    border-bottom: none !important;
}

.topbar a {
    color: var(--topbar-text);
}

.header-main {
    background-color: var(--header-bg);
    box-shadow: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo h1 {
    color: var(--primary-color) !important;
    font-weight: 800;
    font-style: italic;
    /* Dynamic gaming feel */
    font-size: 32px;
    margin: 0;
}

.main-nav {
    display: none;
    justify-content: center;
    background: #fff;
    border-bottom: none;
}

.nav-item a {
    color: var(--text-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 20px;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--primary-color) !important;
}

/* ================= CARDS (Game Selector) ================= */
.game-selector-section {
    background: #fff;
    padding: 30px 0;
    border-bottom: none;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    position: relative;
    /* Added for badge positioning */
}

/* Hot Badge */
.badge-hot {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fff;
    color: #f34f2d;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    z-index: 5;
    text-transform: uppercase;
    line-height: 1;
}

.game-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon img {
    max-width: 100%;
    max-height: 100%;
    filter: none;
    /* No filter needed for colored icons */
}

.game-title {
    color: var(--text-color);
    font-weight: 600;
    display: block;
}

/* ================= BUTTONS ================= */
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    color: #fff;
}

/* ================= PRODUCT / BOOSTING DETAIL ================= */
.boosting-detail-container {
    background: #fff;
    padding: 40px 0;
}

.service-image-container {
    text-align: center;
}

.service-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* Circular image as per screenshot */
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.boosting-form-container {
    background: #fff;
    padding: 20px;
    /* Clean form */
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: var(--radius);
    height: 40px;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(243, 79, 45, 0.1);
}

.price-display {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================= FOOTER ================= */
/* ================= FEATURES BAR ================= */
.features-bar {
    background: #fff;
    padding: 30px 0;
    border-bottom: none;
    /* Removed redundant border-bottom */
    border-top: none;
    text-align: center;
}

.feature-item {
    padding: 15px;
}

.feature-item i {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
}

.feature-item h5 {
    font-weight: 700;
    font-size: 15px;
    color: #333;
    margin: 0 0 5px;
    text-transform: capitalize;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ================= FOOTER ================= */
footer {
    background: #fff !important;
    /* Pure White Background */
    border-top: 1px solid #e0e0e0;
    color: #333 !important;
    /* Dark Text */
    padding-top: 40px;
}

footer .list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .list-menu li {
    margin-bottom: 10px;
}

footer h4 {
    color: #333 !important;
    /* Dark Headers */
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
}

footer a {
    color: #333 !important;
    /* Black Links */
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #f34f2d !important;
    /* Orange Hover */
}

footer p {
    color: #333 !important;
    /* Dark Text */
}

.footer-bottom {
    border-top: 1px solid #eee;
    /* Light separator */
    padding: 20px 0;
    margin-top: 40px;
    background: #fff;
    /* White bottom bar */
    color: #333;
}

.social-icons a {
    font-size: 20px;
    margin-right: 15px;
    color: #333 !important;
    /* Dark Icons */
}

/* Newsletter Input Light Mode */
.newsletter-form .input-group {
    background: #fff !important;
    /* White Input */
    border: 1px solid #ddd;
}

.newsletter-form .form-control {
    background: transparent !important;
    border: none;
    color: #333 !important;
}

.newsletter-form .btn-default {
    background: transparent !important;
    border: none;
    color: #333 !important;
}

.newsletter-form .btn-default:hover {
    color: #f34f2d !important;
}

/* ================= CART SIDEBAR ================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.cart-count {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 5px;
}

.btn-close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Circular as requested */
    object-fit: cover;
    border: 1px solid #eee;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.cart-item-service {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    float: right;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    width: fit-content;
    border-radius: 4px;
    margin-top: 10px;
}

.qty-btn {
    border: none;
    background: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.qty-input {
    width: 30px;
    text-align: center;
    background: none;
    border: none;
    font-weight: 600;
}

.btn-remove {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-remove i {
    margin-right: 5px;
}


.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

.btn-checkout {
    width: 100%;
    background: #999;
    /* Grey initially as per screenshot, or primary if active */
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-checkout.active {
    background: var(--primary-color);
}

.cart-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.cart-links a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cart-links a i {
    margin: 0 5px;
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* ================= CHAT WIDGET ================= */
.floating-chat-widget {
    position: fixed;
    bottom: 85px;
    /* Raised */
    right: 30px;
    z-index: 9990;
    font-family: 'Roboto', sans-serif;
}

.chat-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f34f2d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    z-index: 9992;
}

.chat-fab i {
    color: #fff;
    font-size: 28px;
    transition: opacity 0.3s;
}

.chat-fab.active {
    background: #e74c3c;
    /* Red for close */
    transform: rotate(90deg);
}

.chat-fab.active .fa-comments {
    display: none;
}

.chat-fab .fa-times {
    display: none;
}

.chat-fab.active .fa-times {
    display: block;
}

.chat-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chat-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: transform 0.2s;
}

.chat-item:hover {
    transform: scale(1.05);
    color: #333;
}

.chat-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    font-size: 20px;
}

.icon-hotline {
    background: #f39c12;
}

.icon-messenger {
    background: linear-gradient(45deg, #00c6ff, #0072ff);
}

.icon-zalo {
    background: #0088cc;
}

/* ================= DEPOSIT WIDGET ================= */
.floating-deposit-widget {
    position: fixed;
    bottom: 85px;
    /* Raised from 30px */
    left: 30px;
    z-index: 9990;
    font-family: 'Roboto', sans-serif;
}

/* ================= CHAT WIDGET ================= */
.floating-chat-widget {
    position: fixed;
    bottom: 85px;
    /* Raised from 30px */
    right: 30px;
    z-index: 9990;
    font-family: 'Roboto', sans-serif;
}

/* Footer Dropdown Light Mode */
.footer-bottom .dropdown-toggle {
    background: #fff !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

.footer-bottom .dropdown-menu {
    background: #fff !important;
    border: 1px solid #eee;
}

.footer-bottom .dropdown-menu>li>a {
    color: #333 !important;
    padding: 5px 20px;
}

.footer-bottom .dropdown-menu>li>a:hover {
    background: #f5f5f5 !important;
    color: #f34f2d !important;
}

/* Fix Bottom Gap */
html,
body {
    min-height: 100%;
}

/* Ensure footer covers bottom if content is short, 
   but simplistic approach: extend footer background */
footer {
    position: relative;
    z-index: 10;
}

.btn-floating-deposit {
    background: #f34f2d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.btn-floating-deposit i {
    font-size: 20px;
    margin-right: 8px;
    /* Add spacing between icon and text */
}

.btn-floating-deposit:hover {
    transform: scale(1.05);
}

.deposit-popup {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 340px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.deposit-popup.active {
    display: block;
}

.deposit-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.deposit-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.deposit-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.deposit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.deposit-item:last-child {
    margin-bottom: 0;
}

.deposit-item i {
    font-size: 20px;
    color: #333;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.deposit-info {
    flex: 1;
}

.deposit-info strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.deposit-info p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.btn-deposit-small {
    background: #f34f2d;
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    height: fit-content;
    font-weight: 600;
}

.btn-deposit-small:hover {
    color: #fff;
    background: #d63b1f;
}

.deposit-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.btn-outline {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 14px;
}

.btn-outline:hover {
    background: #f9f9f9;
    color: #333;
}

/* ================= REVIEWS WIDGET ================= */
.feedback-trigger {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    padding: 10px 5px;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9980;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
    border-left: none;
}

.feedback-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 700;
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feedback-icon {
    width: 35px;
    height: 35px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1c40f;
    font-size: 16px;
}

/* Modal Styles */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9995;
    display: none;
    align-items: center;
    justify-content: center;
}

.feedback-modal-overlay.active {
    display: flex;
}

.feedback-modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feedback-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #003366;
    /* Match screenshot blueish header */
}

.btn-close-feedback {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.feedback-summary {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.rating-stars {
    color: #f1c40f;
    font-size: 20px;
}

.btn-write-review {
    background: #fff;
    border: 1px solid #333;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-write-review:hover {
    background: #f5f5f5;
}

.feedback-list {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.review-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
}

.review-stars {
    color: #f1c40f;
    font-size: 12px;
    margin-bottom: 5px;
}

.review-user {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.review-service {
    color: #666;
    font-size: 13px;
    text-decoration: underline;
}

.review-text {
    margin: 5px 0 10px 0;
    color: #333;
    font-size: 14px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.btn-like {
    border: 1px solid #eee;
    background: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ================= DTCL HOVER MENU ================= */
.hover-parent {
    position: static !important;
}

.game-selector-section .container {
    position: relative;
}

.dtcl-hover-menu {
    display: none;
    position: absolute;
    top: auto;
    left: 15px;
    right: 15px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    z-index: 1000;
    margin-top: 10px;
    cursor: default;
}

.hover-parent:hover .dtcl-hover-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    animation: fadeInMega 0.3s ease;
}

.hover-menu-item {
    width: auto;
    flex: 1;
    max-width: 250px;
    min-width: 180px;
    text-align: center;
    margin-bottom: 0;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hover-menu-item:last-child,
.hover-menu-item:nth-last-child(2) {
    margin-bottom: 0;
}

.hover-menu-item:hover {
    background: #fdfdfd;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.hover-menu-item:hover .hover-menu-text {
    color: var(--primary-color);
}

.hover-menu-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.hover-menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hover-menu-item:hover .hover-menu-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hover-menu-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

/* Arrow indicator */
.dtcl-hover-menu::before {
    display: none;
}

/* Bridge to prevent hover logic failure */
.dtcl-hover-menu::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 50px;
    background: transparent;
    z-index: -1;
}

@keyframes fadeInMega {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Ticker Animation for Recent Orders */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .recent-orders-section { padding: 10px 0 !important; }
    .ticker-label { margin-right: 10px !important; font-size: 11px !important; }
    .showcase-section { padding: 40px 0 !important; }
    .section-title h2 { font-size: 20px !important; }
}

/* Optimized Cosmic Ticker and Responsive Styles */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .proof-features { padding-left: 0 !important; margin-top: 30px; }
    .proof-container { margin-bottom: 20px; }
    .ticker-label { margin-right: 15px !important; }
}

@media (max-width: 768px) {
    .showcase-section { padding: 50px 0 !important; }
    .section-title h2 { font-size: 24px !important; }
    .ticker-label { padding: 4px 12px !important; font-size: 11px !important; }
    .ticker-content span { font-size: 12px !important; margin-right: 40px !important; }
}

/* TFT Meta Section Styles */
.comp-card:hover {
    transform: translateY(-8px);
    border-color: #f34f2d !important;
    background: #1e253c !important;
    box-shadow: 0 10px 30px rgba(243, 79, 45, 0.15);
}
.btn-meta-link:hover {
    background: #f34f2d !important;
    box-shadow: 0 0 20px rgba(243, 79, 45, 0.4);
    color: #fff !important;
    border-color: #f34f2d !important;
}

@media (max-width: 768px) {
    .meta-section { padding: 50px 0 !important; }
    .comp-card { min-width: 100% !important; }
    .section-title h2 { font-size: 24px !important; }
}
