/* style.css - Blox Boost Custom Modern Purple UI Styling */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
    --bg-primary: #0b001a;
    --bg-secondary: #14072b;
    --accent-purple: #7b2cbf;
    --accent-purple-glow: rgba(123, 44, 191, 0.4);
    --accent-light: #9d4edd;
    --accent-magenta: #e0aaff;
    --text-main: #f3e8ff;
    --text-muted: #c0b3d6;
    --card-bg: rgba(28, 12, 54, 0.6);
    --card-border: rgba(157, 78, 221, 0.2);
    --glass-bg: rgba(18, 5, 38, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --success: #38b000;
    --warning: #ffb703;
    --danger: #d90429;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(90, 24, 154, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(123, 44, 191, 0.12) 0%, transparent 45%);
    background-attachment: fixed;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* Typography & Layout elements */
a {
    color: var(--accent-magenta);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--accent-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(18, 5, 38, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    position: sticky;
    top: 15px;
    z-index: 100;
    margin: 15px auto 0;
    width: 92%;
    max-width: 1100px;
    padding: 8px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--accent-purple-glow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
}

.nav-btn {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-light) 100%);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px var(--accent-purple-glow);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-light);
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    filter: blur(130px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(157, 78, 221, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-light) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--accent-purple-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-light);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--accent-light);
}

/* Feature Grid */
.features {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 15px 35px rgba(123, 44, 191, 0.15);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 44, 191, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-light);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Products & Pricing Section */
.products-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(36, 0, 70, 0.4) 0%, transparent 70%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-magenta));
    opacity: 0.6;
}

.product-card.popular {
    border-color: var(--accent-light);
    transform: scale(1.03);
    box-shadow: 0 15px 40px var(--accent-purple-glow);
}

.product-card.popular::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-light);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-light);
    box-shadow: 0 15px 35px rgba(123, 44, 191, 0.25);
}

.product-card.popular:hover {
    transform: translateY(-8px) scale(1.03);
}

.product-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-badge {
    color: var(--accent-magenta);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
}

.product-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.product-price span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 2px;
}

.product-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
    padding-left: 10px;
}

.product-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: var(--success);
}

/* Custom Order Card */
.custom-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(28, 12, 54, 0.8) 0%, rgba(58, 12, 102, 0.4) 100%);
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.custom-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.custom-info p {
    color: var(--text-muted);
    max-width: 600px;
}

/* Stock Pool Section */
.stock-section {
    padding: 60px 0;
    text-align: center;
}

.stock-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    max-width: 600px;
    margin: 0 auto;
    padding: 45px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.stock-amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin: 15px 0 25px;
    letter-spacing: -1px;
}

.stock-progress-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.stock-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-light));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-light);
}

.stock-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.stock-badge.instock {
    background: rgba(56, 176, 0, 0.1);
    color: var(--success);
    border: 1px solid rgba(56, 176, 0, 0.2);
}

.stock-badge.lowstock {
    background: rgba(255, 183, 3, 0.1);
    color: var(--warning);
    border: 1px solid rgba(255, 183, 3, 0.2);
}

.stock-badge.outstock {
    background: rgba(217, 4, 41, 0.1);
    color: var(--danger);
    border: 1px solid rgba(217, 4, 41, 0.2);
}

/* Forms & Inputs styling */
.form-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    max-width: 550px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.form-box h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.form-box p.subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(13, 2, 33, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-light);
    box-shadow: 0 0 12px var(--accent-purple-glow);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Alert Notification Boxes */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(56, 176, 0, 0.1);
    color: #aacc00;
    border: 1px solid rgba(56, 176, 0, 0.3);
}

.alert-danger {
    background: rgba(217, 4, 41, 0.1);
    color: #ff85a2;
    border: 1px solid rgba(217, 4, 41, 0.3);
}

/* Admin Dashboard CSS layout */
.admin-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-sidebar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 25px;
    height: fit-content;
}

.admin-menu {
    list-style: none;
}

.admin-menu li {
    margin-bottom: 12px;
}

.admin-menu li a {
    display: block;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-menu li a:hover,
.admin-menu li a.active {
    background: var(--accent-purple);
    color: #ffffff;
    box-shadow: 0 4px 10px var(--accent-purple-glow);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 45px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
}

.stat-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
}

/* Database Table Styles */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
}

th {
    background: rgba(13, 2, 33, 0.4);
    font-weight: 700;
    color: var(--text-main);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-pending {
    background: rgba(255, 183, 3, 0.15);
    color: var(--warning);
}

.badge-completed {
    background: rgba(56, 176, 0, 0.15);
    color: var(--success);
}

.badge-cancelled {
    background: rgba(217, 4, 41, 0.15);
    color: var(--danger);
}

.badge-failed {
    background: rgba(217, 4, 41, 0.15);
    color: var(--danger);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--glass-border);
    background: var(--bg-primary);
    padding: 60px 0 30px;
    margin-top: 80px;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-about h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Action button in table */
.action-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.btn-success {
    background: var(--success);
    color: #ffffff;
}

.btn-success:hover {
    background: #2a8500;
}

.btn-danger {
    background: var(--danger);
    color: #ffffff;
}

.btn-danger:hover {
    background: #a90320;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Steps progression tracker for Redemption */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    position: relative;
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--card-border);
    z-index: 1;
    transform: translateY(-50%);
}

.step-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.step-node.active {
    border-color: var(--accent-light);
    color: #ffffff;
    box-shadow: 0 0 15px var(--accent-purple-glow);
    background: var(--accent-purple);
}

.step-node.completed {
    border-color: var(--success);
    color: #ffffff;
    background: var(--success);
}

/* Vouch Wall Carousel Styles */
.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .carousel-wrapper {
        padding: 0 10px;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20, 7, 43, 0.8);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.carousel-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-light);
    box-shadow: 0 0 15px var(--accent-purple-glow);
    color: #ffffff;
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--card-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-light);
    box-shadow: 0 0 10px var(--accent-purple-glow);
    transform: scale(1.2);
}

/* Live Claim History Ticker Styles */
.live-ticker-section {
    background: rgba(11, 0, 26, 0.9);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 25px rgba(123, 44, 191, 0.15);
}

.live-ticker-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.ticker-title {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-light) 100%);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    margin-left: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px var(--accent-purple-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-pulse {
    width: 8px;
    height: 8px;
    background-color: #39FF14;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #39FF14;
    animation: pulse-glow 1.5s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.ticker-track-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: ticker-marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.ticker-icon {
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.ticker-user {
    color: var(--accent-magenta);
    font-weight: 600;
}

.ticker-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

@keyframes ticker-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

