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

body {
    background: #000;
    color: #00CC00;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    min-width: 620px;
}

#logo {
    text-align: center;
    padding: 12px 0 40px 0;
}

/* ---- Large etoy clock ---- */
#main-panel {
    width: 600px;
    margin: 0 auto;
}

#etoy-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

#etoy-digits img {
    height: 70px;
    display: block;
}

#etoy-date {
    font-size: 30px;
    color: #ffffff;
    letter-spacing: 2px;
    text-align: right;
    padding-right: 2px;
    margin: 4px 0 40px;
}

/* ---- Progress section ---- */
#progress-wrap {
    margin: 8px 0 4px 0;
}

.bar-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 3px;
}

.label-green  { color: #00CC00; }
.label-yellow { color: #FFFF00; font-size: 20px; }

.label-arrow {
    color: #ffffff;
    font-size: 18px;
    margin-left: 6px;
}

.bar-track {
    width: 100%;
    height: 16px;
    background: #111;
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
}

.bar-fill-etoy    { height: 100%; background: #00CC00; width: 0%; }
.bar-fill-classic { height: 100%; background: #CC0000; width: 0%; }

.bar-divider {
    position: relative;
    height: 5px;
    background: #ffffff;
    margin: 10px -20px;
}

.divider-left,
.divider-right {
    position: absolute;
    color: #ffffff;
    font-size: 16px;
    line-height: 1;
}

.divider-left {
    left: 0;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2px;
}

.divider-left::before {
    content: '';
    display: block;
    width: 5px;
    height: 14px;
    background: #ffffff;
}

.divider-right {
    right: 0;
    top: 0;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.divider-right::before {
    content: '';
    display: block;
    width: 5px;
    height: 14px;
    background: #ffffff;
}

/* segmented look */
.bar-track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 11px,
        #000 11px,
        #000 12px
    );
    pointer-events: none;
}

.classic-label-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    margin-top: 1px;
}

/* ---- Clocks row ---- */
#clocks-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 10px 0 16px 0;
}

#analog-clocks {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.clock-item { text-align: center; }

.clock-item canvas {
    display: block;
    margin: 0 auto;
}

.clock-label {
    font-size: 12px;
    color: #ffffff;
    font-style: italic;
    margin-top: 3px;
    white-space: nowrap;
}

#classic-display {
    text-align: right;
    padding-bottom: 4px;
}

#classic-time {
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 1px;
}

#classic-date {
    font-size: 22px;
    color: #ffffff;
}

/* ---- Embargo overlay ---- */
#embargo-msg {
    display: none;
    text-align: center;
    margin: 4px 0;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ---- Understanding link ---- */
#understanding {
    text-align: center;
    margin: 8px 0 16px 0;
}

#understanding a img { border: 0; }

/* ---- Sound button ---- */
#sound-wrap {
    text-align: center;
    margin: 30px 0 20px;
}

#sound-btn {
    background: #000;
    color: #00CC00;
    border: 1px solid #00CC00;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 11px;
    padding: 3px 10px;
    cursor: pointer;
    letter-spacing: 1px;
}

/* ---- understanding.html ---- */
.understanding-page {
    padding: 16px;
}

.content {
    max-width: 960px;
    margin: 25px auto;
}

.content p {
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.content ul {
    margin: 0 0 50px 0;
    padding-left: 24px;
}

.content ul li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.etoy-disclaimer { color: #FF0000; }

/* ---- Reconstruction disclaimer (index_new.html) ---- */
.disclaimer {
    color: #656565;
    border: 2px solid #656565;
    font-weight: normal;
    padding: 20px 20px 0;
    margin: 50px 100px;
    display: flex;
    column-gap: 40px;
}

.disclaimer p {
    margin: 0 0 15px;
    line-height: 150%;
}

/* Certificate */
.certificate{
    margin: 0  50px 0 0;
    width: 300px;
}
.certificate img{
    width: 100%;
        border: 1px solid #ff6600; 

}