/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #f8fafb;
    --panel-bg: rgba(255, 255, 255, 1);
    --primary-color: #003f3f;
    --primary-dark: #002828;
    --primary-light: #005a5a;
    --primary-lighter: rgba(0, 63, 63, 0.12);
    --secondary-color: #A88575;
    --secondary-dark: #8a6d5f;
    --secondary-light: #c49d8a;
    --secondary-lighter: rgba(168, 133, 117, 0.15);
    --primary-gradient: linear-gradient(135deg, #003f3f 0%, #005a5a 50%, #004a4a 100%);
    --primary-gradient-light: linear-gradient(135deg, rgba(0, 63, 63, 0.15) 0%, rgba(0, 90, 90, 0.15) 50%, rgba(0, 74, 74, 0.15) 100%);
    --secondary-gradient: linear-gradient(135deg, #A88575 0%, #c49d8a 50%, #b8917f 100%);
    --secondary-gradient-light: linear-gradient(135deg, rgba(168, 133, 117, 0.15) 0%, rgba(196, 157, 138, 0.15) 50%, rgba(184, 145, 127, 0.15) 100%);
    --accent-blue: #2980b9;
    --accent-purple: #8e44ad;
    --accent-orange: #d35400;
    --accent-teal: #16a085;
    --accent-pink: #c0392b;
    --accent-cyan: #0097a7;
    --dark-grey: #003f3f;
    --light-grey: #ffffff;
    --medium-grey: #7f8c8d;
    --accent-color: #005a5a;
    --positive-color: #1e8449;
    --negative-color: #c0392b;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --shadow: 0 10px 40px rgba(0, 63, 63, 0.15), 0 6px 20px rgba(0, 63, 63, 0.1), 0 2px 8px rgba(0, 63, 63, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 63, 63, 0.25), 0 10px 30px rgba(0, 63, 63, 0.2);
    --shadow-soft: 0 6px 24px rgba(0, 63, 63, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(0, 63, 63, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-small: 12px;
}

html, body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9fc 30%, #f0f5f8 60%, #fafbfc 100%);
    background-attachment: fixed;
    color: var(--primary-color);
    padding: 0.8vh 1.2vw;
    direction: rtl;
    display: flex;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 63, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 133, 117, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 90, 90, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(0, 63, 63, 0.02) 100px, rgba(0, 63, 63, 0.02) 200px),
        repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(168, 133, 117, 0.02) 100px, rgba(168, 133, 117, 0.02) 200px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius);
    padding: 0.8vh 1.2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    margin-bottom: 0.8vh;
    transition: var(--transition);
    flex-shrink: 0;
    height: 5.5vh;
    border: 1px solid rgba(0, 63, 63, 0.12);
    position: relative;
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0.8;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 10%;
    inset-inline-end: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 63, 63, 0.2), transparent);
}


.header-left .time-date {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2vh;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.header-left .time-date .icon {
    width: 1.6vh;
    height: 1.6vh;
    margin: 0 4px;
    color: var(--primary-color);
    opacity: 0.9;
}

.separator {
    color: var(--primary-color);
    font-weight: 400;
    opacity: 0.6;
}

.header-center .company-logo {
    font-size: 2.2vh;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    padding: 0.8vh 2.5vw;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 251, 1) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(168, 133, 117, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-center .company-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    inset-inline-start: -10px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(168, 133, 117, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.header-center .company-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    inset-inline-end: -10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(168, 133, 117, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.header-center .company-logo .icon {
    width: 1.7vh;
    height: 1.7vh;
    color: var(--secondary-color);
    opacity: 0.9;
}



.header-right .stock-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2vh;
}

.header-right .stock-info .icon {
    width: 1.6vh;
    height: 1.6vh;
    color: var(--primary-color);
    opacity: 0.9;
    margin-inline-start: 4px;
}

.stock-label {
    color: var(--primary-color);
    font-weight: 600;
}

.stock-price {
    font-weight: 700;
    font-size: 2.3vh;
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 2px rgba(0, 63, 63, 0.2);
}

.stock-change {
    font-weight: 600;
    padding: 0.4vh 0.8vw;
    border-radius: 6px;
    font-size: 1.8vh;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.stock-change i {
    font-size: 1.5vh;
}

.stock-change.positive {
    color: var(--positive-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 255, 250, 1) 100%);
    border: 2px solid var(--positive-color);
    font-weight: 700;
    box-shadow: 
        0 2px 8px rgba(30, 132, 73, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stock-change.positive .icon-small {
    color: var(--positive-color);
}

.stock-change.negative {
    color: var(--negative-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 248, 248, 1) 100%);
    border: 2px solid var(--negative-color);
    font-weight: 700;
    box-shadow: 
        0 2px 8px rgba(192, 57, 43, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stock-change.negative .icon-small {
    color: var(--negative-color);
    transform: rotate(180deg);
}

/* Main Container */
.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2vw;
    height: calc(100vh - 5.5vh - 0.8vh - 1.6vh);
    flex: 1;
    overflow: hidden;
}

/* Left Panel - Countdown */
.left-panel {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius);
    padding: 1.5vh 1.5vw;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1vh;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 63, 63, 0.15);
    position: relative;
    background-image: 
        radial-gradient(circle at top right, rgba(0, 63, 63, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 251, 1) 100%);
}

.left-panel::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.info-section::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.6;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}


.panel-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.panel-header::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    opacity: 0.6;
}

.panel-header::after {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    opacity: 0.6;
}

.panel-header .icon {
    width: 2.5vh;
    height: 2.5vh;
    color: var(--secondary-color);
    opacity: 0.9;
}

.panel-header h2 {
    font-size: 2.5vh;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 63, 63, 0.1);
}

.countdown-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 251, 1) 100%);
    border-radius: var(--border-radius);
    padding: 1.5vh 1.2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 0;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 2px 8px rgba(0, 63, 63, 0.08),
        0 4px 16px rgba(0, 63, 63, 0.1);
}

.image-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: carousel-fade 30s infinite;
    filter: brightness(0.4) contrast(1.1);
}

.carousel-image:nth-child(1) {
    animation-delay: 0s;
}

.carousel-image:nth-child(2) {
    animation-delay: 5s;
}

.carousel-image:nth-child(3) {
    animation-delay: 10s;
}

.carousel-image:nth-child(4) {
    animation-delay: 15s;
}

.carousel-image:nth-child(5) {
    animation-delay: 20s;
}

.carousel-image:nth-child(6) {
    animation-delay: 25s;
}

@keyframes carousel-fade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    8% {
        opacity: 1;
        transform: scale(1);
    }
    17% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.countdown-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(0, 63, 63, 0.3) 0%, rgba(0, 63, 63, 0.1) 50%, rgba(168, 133, 117, 0.2) 100%),
        radial-gradient(circle at 30% 30%, rgba(0, 63, 63, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 90, 90, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    inset-inline-start: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 63, 63, 0.06) 0%, transparent 70%);
    animation: pulse-bg 5s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.countdown-display {
    display: flex;
    gap: 2vw;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    z-index: 2;
}

.countdown-display::before {
    content: '';
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 63, 63, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vh;
    min-width: 0;
    flex: 1;
    max-width: 110px;
    position: relative;
    padding: 1vh;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 63, 63, 0.1);
    box-shadow: 0 2px 8px rgba(0, 63, 63, 0.1);
    z-index: 1;
}

.time-unit::before {
    content: '';
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 63, 63, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.time-unit::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.3s;
}

.time-value {
    font-size: 6.5vh;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: var(--transition-fast);
    text-shadow: 
        0 2px 8px rgba(0, 63, 63, 0.3),
        0 1px 3px rgba(0, 63, 63, 0.2);
    letter-spacing: -1px;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 63, 63, 0.4));
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-value.animate {
    animation: pulse-number 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-number {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(0, 63, 63, 0.3));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 4px 12px rgba(0, 63, 63, 0.5));
    }
}

.time-label {
    font-size: 2vh;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 1;
    letter-spacing: 0.2px;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 0.8vh;
    flex-shrink: 0;
    position: relative;
}

.project-list::before {
    content: '';
    position: absolute;
    top: -10px;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 63, 63, 0.2), transparent);
}

.project-item {
    background: var(--primary-gradient);
    color: var(--panel-bg);
    padding: 1vh 1.2vw;
    border-radius: var(--border-radius-small);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    box-shadow: 
        0 6px 20px rgba(0, 63, 63, 0.3),
        0 3px 8px rgba(0, 63, 63, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.project-item::after {
    content: '';
    position: absolute;
    top: -50%;
    inset-inline-end: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.project-item:nth-child(1) {
    background: var(--primary-gradient);
}

.project-item:nth-child(2) {
    background: var(--secondary-gradient);
    box-shadow: 
        0 6px 20px rgba(168, 133, 117, 0.3),
        0 3px 8px rgba(168, 133, 117, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.project-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-info .icon-small {
    width: 1.5vh;
    height: 1.5vh;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.95;
}



.project-label {
    font-weight: 600;
    font-size: 1.9vh;
    letter-spacing: 0.1px;
}

.project-duration {
    font-weight: 700;
    font-size: 2vh;
    letter-spacing: 0.1px;
}

/* Right Panel */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 0.9vh;
    height: 100%;
    overflow: hidden;
}

.info-section {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius);
    padding: 1.2vh 1.5vw;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 63, 63, 0.15);
    position: relative;
    background-image: 
        radial-gradient(circle at top left, rgba(0, 63, 63, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 251, 1) 100%);
}

.info-section::before {
    content: '';
    position: absolute;
    top: -20px;
    inset-inline-end: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 63, 63, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.info-section:nth-child(2)::before {
    background: radial-gradient(circle, rgba(168, 133, 117, 0.04) 0%, transparent 70%);
}

.info-section::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0.8;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.info-section:nth-child(1)::after {
    background: var(--primary-gradient);
}

.info-section:nth-child(2)::after {
    background: var(--secondary-gradient);
}

.info-section:nth-child(3)::after {
    background: var(--primary-gradient);
}


.section-header {
    margin-bottom: 0.9vh;
    padding-bottom: 0.8vh;
    border-bottom: 2px solid;
    border-image: var(--primary-gradient-light) 1;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header::before {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 0 4px 4px 0;
    opacity: 0.6;
}

.info-section:nth-child(2) .section-header::before {
    background: var(--secondary-gradient);
}

.section-header .icon {
    width: 1.8vh;
    height: 1.8vh;
    opacity: 0.9;
}

.info-section:nth-child(1) .section-header .icon {
    color: var(--primary-color);
}

.info-section:nth-child(2) .section-header .icon {
    color: var(--secondary-color);
}

.info-section:nth-child(3) .section-header .icon {
    color: var(--primary-color);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    inset-inline-start: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 63, 63, 0.3);
}

.info-section:nth-child(2) .section-header::after {
    background: var(--secondary-gradient);
    box-shadow: 0 2px 4px rgba(168, 133, 117, 0.3);
}

.section-header h3 {
    font-size: 2vh;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.2px;
    text-shadow: 0 1px 2px rgba(0, 63, 63, 0.1);
}

.announcement-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6vh;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.announcement-list::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), transparent, var(--primary-color));
    opacity: 0.1;
}

.info-section:nth-child(2) .announcement-list::before {
    background: linear-gradient(180deg, var(--secondary-color), transparent, var(--secondary-color));
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 0.6vh 0.6vw;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-inline-start: 3px solid transparent;
}

.announcement-item::before {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-gradient);
    border-radius: 0 8px 8px 0;
    transition: width 0.3s ease;
    z-index: 0;
}

.info-section:nth-child(1) .announcement-item::before {
    background: var(--primary-gradient);
}

.info-section:nth-child(2) .announcement-item::before {
    background: var(--secondary-gradient);
}

.info-section:nth-child(3) .announcement-item::before {
    background: var(--primary-gradient);
}



.bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-gradient);
    border-radius: 4px;
    flex-shrink: 0;
    transition: var(--transition-fast);
    box-shadow: 
        0 3px 6px rgba(0, 63, 63, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.info-section:nth-child(1) .bullet {
    background: var(--primary-gradient);
}

.info-section:nth-child(2) .bullet {
    background: var(--secondary-gradient);
}

.info-section:nth-child(3) .bullet {
    background: var(--primary-gradient);
}

.bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.announcement-text {
    font-size: 1.9vh;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.1px;
}

/* Investor Section */
.investor-section {
    display: flex;
    flex-direction: column;
}

.investor-content {
    display: flex;
    flex-direction: column;
    gap: 0.8vh;
    flex: 1;
    min-height: 0;
}

.stock-value-large {
    font-size: 5vh;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 0.9vh 1.2vw;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 251, 1) 100%);
    border-radius: var(--border-radius-small);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    border: 2px solid rgba(0, 63, 63, 0.25);
    letter-spacing: -0.5px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 63, 63, 0.2);
    box-shadow: 
        inset 0 2px 6px rgba(0, 63, 63, 0.1),
        0 4px 12px rgba(0, 63, 63, 0.12);
    background-image: 
        radial-gradient(circle at center, rgba(0, 63, 63, 0.02) 0%, transparent 70%);
}

.stock-value-large::before {
    content: '';
    position: absolute;
    top: -30px;
    inset-inline-start: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 63, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stock-value-large::after {
    content: '';
    position: absolute;
    bottom: -20px;
    inset-inline-end: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 90, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stock-value-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}


.stock-chart {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 251, 1) 100%);
    border-radius: var(--border-radius-small);
    padding: 0.9vh 1.2vw;
    height: 9vh;
    position: relative;
    flex-shrink: 0;
    border: 2px solid rgba(0, 63, 63, 0.2);
    overflow: hidden;
    box-shadow: 
        inset 0 2px 6px rgba(0, 63, 63, 0.08),
        0 2px 8px rgba(0, 63, 63, 0.1);
}

.stock-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(0, 63, 63, 0.03) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(0, 63, 63, 0.02) 50px);
    pointer-events: none;
    z-index: 0;
}

.stock-chart canvas {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
}

#stock-chart-canvas {
    width: 100%;
    height: 100%;
}


/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(30px, 0);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.left-panel {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.right-panel > *:nth-child(1) {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.right-panel > *:nth-child(2) {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.right-panel > *:nth-child(3) {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* SVG Icon Styles */
.icon {
    width: 1.8vh;
    height: 1.8vh;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary-color);
    opacity: 0.8;
    flex-shrink: 0;
}

.icon-small {
    width: 1.5vh;
    height: 1.5vh;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon svg, .icon-small svg {
    width: 100%;
    height: 100%;
}

/* Enhanced Visual Polish */
.time-unit {
    position: relative;
}

.announcement-item {
    position: relative;
}

/* Smooth number transitions */
.time-value {
    will-change: transform;
}

.stock-price, .stock-value-large {
    will-change: contents;
}


