/* BASE VARIABLES & RESET */
:root {
    /* High-contrast Minimalist Dark Theme based on new screenshot */
    --bg-color: #030303; /* Deepest almost-black */
    --text-color: #ffffff; /* Stark white for typography */
    --text-muted: #888888;
    --primary-accent: #ffffff; /* We stick to white/grey for pure minimalism, but glow bright */
    --border-color: rgba(255, 255, 255, 0.15);
    
    --font-heading: 'Oswald', sans-serif;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.muted-text { color: var(--text-muted); font-size: 1.125rem; font-family: var(--font-main); }
.large-text { font-size: 1.5rem; font-weight: 500; font-family: var(--font-main); }
.text-light { color: #ffffff !important; }

/* Premium Metallic Accents */
.platinum-text {
    background: linear-gradient(135deg, #e5e4e2, #ffffff, #b0b0b0, #dcdcdc, #8b8b8b) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}
.gold-text {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}
.silver-text {
    background: linear-gradient(135deg, #8c8c8c, #e6e6e6, #a6a6a6, #f2f2f2, #808080) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* LAYOUT */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 140px 0;
    position: relative;
    z-index: 2;
}

.about.section {
    padding-top: 80px; /* Reduced black space */
}

.border-top-minimal {
    border-top: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

/* NAVBAR (Dark Theme) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
}

.logo {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    display: inline-block;
    color: #ffffff;
}

.nav-center {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    align-items: center;
    backdrop-filter: blur(10px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: rgba(255,255,255,1);
    background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* LIGHT CTA BUTTON (Pill Design) */
.btn-dark {
    display: inline-block;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 0.85rem;
    padding: 12px 28px;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.time-widget {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

#real-time-clock {
    color: #ffffff;
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
    font-weight: 300;
}

/* CANVAS 3D */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent; 
}

/* CUSTOM ZUCK CURSOR */
#zuck-cursor {
    position: fixed !important;
    top: -100px;
    left: -100px;
    width: 64px;
    height: 64px;
    background-image: url('cursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    pointer-events: none !important;
    z-index: 999999999 !important; /* Extremely high z-index with important */
    transform: translate(-50%, -50%) translateZ(0); /* Force GPU layer */
    will-change: transform, left, top;
    transition: width 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.2s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

body.hovering-link #zuck-cursor {
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 15px rgba(253, 185, 49, 0.8)) !important;
    transform: translate(-50%, -50%) scale(1.1) translateZ(0) !important;
}

/* Make sure links don't show the hand cursor */
a, button, .pulse-dot {
    cursor: none !important;
}

/* CONTENT WRAPPER */
.content-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 100vh; 
    background: var(--bg-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -20px 50px rgba(0,0,0,0.8);
}

/* HERO SECTION */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none; 
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Keep the text legible but let the brilliant 3D shine through or sit behind */
.hero-center {
    text-align: center;
    pointer-events: none;
    width: 100%;
    z-index: 10;
    /* Subtle hint for user as requested by the image style */
    position: relative;
}

.mouse-hint {
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(3.3rem, 8.8vw, 8.8rem); /* Increased size by 10% */
    letter-spacing: -0.01em;
    line-height: 0.9;
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.9);
    pointer-events: auto;
}

.hero-bottom-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.hero-subtitle {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.hero-bottom-right {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    background: transparent;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}


/* ABOUT INTRO (Globe Animation & Typo) */
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracked { letter-spacing: 0.15em; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.overhead-text {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
}

.title-huge {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: #ffffff;
}

.subtitle-text {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.globe-animation-container {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.world-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 55.615%; /* Exact SVG aspect ratio to mathematically map % coords correctly */
    pointer-events: none;
}

.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.08); /* Stylized dark continents */
    -webkit-mask-image: url('map_candidate_1.svg');
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('map_candidate_1.svg');
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    opacity: 0.9;
}

.pulse-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    transform: translate(-50%, -50%);
}

/* Gold Nodes (Odd) */
.pulse-dot:nth-child(odd) {
    background: linear-gradient(135deg, #fcf6ba, #b38728);
    box-shadow: 0 0 12px 2px rgba(253, 185, 49, 0.5);
    animation: flash-square-gold 3s infinite alternate ease-in-out;
}

/* Silver Nodes (Even) */
.pulse-dot:nth-child(even) {
    background: linear-gradient(135deg, #e6e6e6, #808080);
    box-shadow: 0 0 12px 2px rgba(200, 200, 200, 0.5);
    animation: flash-square-silver 3s infinite alternate ease-in-out;
}

@keyframes flash-square-gold {
    0% { 
        opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); 
        box-shadow: 0 0 6px 1px rgba(253, 185, 49, 0.2); 
    }
    100% { 
        opacity: 1; transform: translate(-50%, -50%) scale(1.1); 
        box-shadow: 0 0 15px 4px rgba(253, 185, 49, 0.6), 0 0 30px 8px rgba(253, 185, 49, 0.2); 
    }
}

@keyframes flash-square-silver {
    0% { 
        opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); 
        box-shadow: 0 0 6px 1px rgba(224, 224, 224, 0.2); 
    }
    100% { 
        opacity: 1; transform: translate(-50%, -50%) scale(1.1); 
        box-shadow: 0 0 15px 4px rgba(224, 224, 224, 0.6), 0 0 30px 8px rgba(224, 224, 224, 0.2); 
    }
}

/* PARTNERS GRID (About Us Replacement) */
.partners-grid-container {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: transparent;
    margin-top: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.partners-grid.grid-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.partner-col {
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color 0.4s ease;
}

.partner-col:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.partner-col:last-child {
    border-right: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.partner-main-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-col:hover .partner-main-title {
    transform: translateX(4px);
}

.partner-main-title .solid-text {
    color: #ffffff;
}

.partner-main-title .grey-text {
    color: var(--text-muted);
}

.partner-col.title-col {
    background: rgba(255, 255, 255, 0.02);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    transition: background-color 0.4s ease;
}

.partner-col.title-col:hover {
    background: rgba(255, 255, 255, 0.05);
}

.partner-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-col:hover .partner-subtitle {
    transform: translateY(-4px);
}

.partner-text {
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s ease;
}

.partner-col:hover .partner-text {
    transform: translateY(-4px);
    color: rgba(255, 255, 255, 0.9);
}

/* Green Cross Decorators */
.partners-decor-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 5;
}

.partners-decor-cross::before,
.partners-decor-cross::after {
    content: '';
    position: absolute;
    background: #ffffff; /* White instead of green */
}

.partners-decor-cross::before {
    top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%);
}
.partners-decor-cross::after {
    top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%);
}

.top-cross {
    top: -10px;
    left: 25%;
    transform: translateX(-50%);
}

.bottom-cross {
    bottom: -10px;
    left: 75%;
    transform: translateX(-50%);
}

/* MINIMAL GRID (Fallback/Reused mapping if needed anywhere else) */
.minimal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* CONDITIONS LIST */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.card-minimal {
    padding-top: 20px;
}

.card-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: var(--font-main);
}

.card-minimal h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

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

/* VACANCIES LIST */
.list-minimal {
    display: flex;
    flex-direction: column;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.list-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.list-item:hover {
    padding-left: 20px;
    padding-right: 20px;
    background: rgba(255,255,255,0.03);
}

.list-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.list-meta {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-weight: 500;
}

.list-arrow {
    font-size: 1.5rem;
    color: var(--text-color);
}

/* CONTACT FORM */
.accent-bg {
    background-color: var(--bg-color); 
}

.mt-40 { margin-top: 40px; }

.link-hover-light {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.link-hover-light:hover {
    text-decoration-color: var(--text-color);
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.form-minimal {
    display: flex;
    flex-direction: column;
}

.input-light {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 24px 0;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1.2rem;
    resize: none;
    transition: border-color 0.3s;
}

.input-light:focus {
    outline: none;
    border-bottom-color: var(--text-color);
}

.btn-submit-light {
    margin-top: 40px;
    align-self: flex-start;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 20px 40px;
    font-family: var(--font-main);
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit-light:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* DSRCM DASHBOARD FOOTER */
.dsrcm-footer {
    position: relative;
    z-index: 20;
    padding: 240px 0 80px; /* Increased top padding so fixed navbar does not overlap footer contents */
    background-color: #111111; /* Dark grey background */
    border-top: 1px solid rgba(255,255,255,0.05); /* Subtle dark border */
    color: #a0a0a0; /* Grey text instead of red */
    font-family: 'Courier New', Courier, monospace; /* For the data table */
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.logo-footer {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.privacy-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #a0a0a0;
    transition: var(--transition);
    font-family: var(--font-main);
}
.privacy-link:hover {
    color: #ffffff;
}

/* Center Links */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #a0a0a0;
    font-family: var(--font-main);
    transition: var(--transition);
}

.footer-link:hover {
    color: #ffffff;
}

/* Icons */
.footer-right {
    display: flex;
    gap: 15px;
}
.red-icon {
    border-color: #a0a0a0;
    color: #a0a0a0;
    border-radius: 8px; /* Slightly squarish as in DSRCM */
}
.red-icon:hover {
    background: #a0a0a0;
    color: #111111;
    border-color: #a0a0a0;
    box-shadow: 0 0 15px rgba(160, 160, 160, 0.4);
}

/* Crosshair Decorator */
.footer-crosshair {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}
.cross-row {
    display: flex;
    justify-content: space-between;
    width: 60px;
}
.mid-row {
    justify-content: center;
}
.dot {
    width: 4px;
    height: 4px;
    background-color: #777777;
}
.center-dot {
    width: 6px;
    height: 6px;
}

/* Dashboard Table */
.footer-dashboard {
    width: 100%;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.dash-row {
    display: grid;
    grid-template-columns: 80px 1.5fr 40px 100px 100px 150px 120px 1fr 100px;
    align-items: end;
    gap: 15px;
    padding: 10px 0;
}

.dash-header {
    border-bottom: 1px solid rgba(160, 160, 160, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
    align-items: end;
}
.dash-header > div {
    font-weight: bold;
}

.col-result, .col-reach, .col-impressions, .col-cpr, .col-spent, .col-ends {
    text-align: right;
}

/* Off Rows styling */
.off-row {
    color: #555555; /* Darker grey to indicate OFF status */
}

.dim {
    opacity: 0.5;
}

/* Responsive tweaks for the complex table */
@media (max-width: 1024px) {
    .dash-row {
        grid-template-columns: 60px 1fr 20px 80px 80px 100px 80px 120px 80px;
        font-size: 0.65rem;
    }
}
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    .footer-dashboard {
        display: none; /* Hide complex table on mobile for minimalism */
    }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}
.fade-up { transform: translateY(50px); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .minimal-grid { grid-template-columns: 1fr; gap: 40px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .nav-center { display: none; }
    .hero-title { font-size: 5rem; }
    
    .partners-grid {
        grid-template-columns: 1fr 1fr;
    }
    .partner-col:nth-child(2) {
        border-right: none;
    }
    .partner-col:nth-child(3), .partner-col:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .partner-col.title-col { border-bottom-left-radius: 0; border-top-right-radius: 12px; }
    .top-cross { left: 50%; }
    .bottom-cross { left: 50%; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 4rem; }
    .btn-dark { padding: 20px; font-size: 0.75rem; }
    .logo { padding: 20px; }
    .hero-bottom-left { bottom: 20px; left: 20px; }
    .hero-bottom-right { bottom: 20px; right: 20px; }
    .list-item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .list-meta { text-align: left;}
    .grid-4 { grid-template-columns: 1fr; }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner-col {
        border-right: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .partner-col:first-child {
        border-top: none;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }
    .top-cross, .bottom-cross { display: none; }
}
