:root {    --ios-blue: #007AFF;    --cna-dark-blue: #004a99;    --ios-bg: #F2F2F7;    --glass: rgba(255, 255, 255, 0.85);    --border-color: rgba(0,0,0,0.1);    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);}body {    margin: 0;    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;    background: var(--ios-bg);    color: #1c1c1e;    line-height: 1.5;    overflow-x: hidden;}.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }.ios-header {     background: var(--glass); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);    padding: 10px 0; border-bottom: 0.5px solid var(--border-color);     position: sticky; top: 0; z-index: 1000;}.top-flex { display: flex; justify-content: space-between; align-items: center; }.logo { height: 55px; cursor: pointer; transition: transform 0.3s ease; }.logo:active { transform: scale(0.95); }.header-tools { display: flex; gap: 12px; }.search-ios { background: #fff; border: 1px solid #ddd; border-radius: 10px; padding: 6px 12px; display: flex; align-items: center; transition: var(--transition-smooth); }.search-ios:focus-within { border-color: var(--ios-blue); box-shadow: 0 0 0 3px rgba(0,122,255,0.1); }.search-ios input { border: none; outline: none; padding-left: 8px; width: 180px; font-size: 14px; }.btn-sesizari { background: var(--ios-blue); color: white; border: none; border-radius: 10px; padding: 10px 20px; font-weight: 600; cursor: pointer; transition: var(--transition-smooth); }.ios-nav { background: var(--cna-dark-blue); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }.ios-nav ul { list-style: none; display: flex; margin: 0; padding: 0; overflow-x: auto; scrollbar-width: none; }.ios-nav li { padding: 15px 22px; font-size: 12px; font-weight: 700; cursor: pointer; text-transform: uppercase; white-space: nowrap; transition: background 0.2s; position: relative; }.ios-nav li:after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: #fff; transition: var(--transition-smooth); transform: translateX(-50%); }.ios-nav li:hover:after { width: 100%; }.breadcrumbs {     font-size: 11px; color: #8e8e93; margin: 15px 0 10px 0; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center;}.breadcrumb-link { color: var(--ios-blue); cursor: pointer; font-weight: 700; transition: opacity 0.2s; }.layout-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; margin-top: 10px; }.page-title { font-size: 28px; font-weight: 800; margin-bottom: 25px; display: flex; align-items: center; color: #000; }.news-item {     background: white; border-radius: 12px; padding: 20px; margin-bottom: 18px;     display: flex; gap: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); cursor: pointer;    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);}.news-item:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }.news-thumb { width: 160px; height: 110px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }.news-info h2 { margin: 0 0 10px 0; font-size: 20px; color: var(--cna-dark-blue); line-height: 1.3; }/* SPINNER MODIFICAT: FADE-OUT + ROTIRE CONTINUA */.update-spinner {     width: 20px; height: 20px; border: 2.5px solid rgba(0,122,255,0.1);     border-top-color: var(--ios-blue); border-radius: 50%;     margin-left: 15px; opacity: 0;     visibility: hidden;    transition: opacity 0.5s ease, visibility 0.5s;     animation: spin 0.8s linear infinite;}.update-spinner.active {     opacity: 1;     visibility: visible;    animation: spin 0.8s linear infinite, pulse-glow 1.5s ease-in-out infinite; }.sidebar-section { background: white; border-radius: 12px; padding: 22px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }.section-blue { border-top: 5px solid var(--cna-dark-blue); }.section-red { border-top: 5px solid #cc0000; }.side-link { display: block; padding: 12px 0; border-bottom: 0.5px solid #f0f0f0; text-decoration: none; color: #1c1c1e; font-size: 14px; }.latest-alert-box {     background: #fff; border-left: 5px solid #cc0000; padding: 14px 20px;     display: flex; align-items: center; gap: 15px; border-radius: 8px;    box-shadow: 0 4px 15px rgba(204,0,0,0.08);}.alert-label { color: #cc0000; font-weight: 900; }#latest-alert-link { color: var(--cna-dark-blue); text-decoration: none; font-weight: 700; flex: 1; font-size: 15px; }@keyframes spin { to { transform: rotate(360deg); } }@keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(0,122,255,0.4); } 70% { box-shadow: 0 0 0 10px rgba(0,122,255,0); } 100% { box-shadow: 0 0 0 0 rgba(0,122,255,0); } }@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }.animate-fade-in { animation: fadeIn 0.5s ease forwards; }.animate-card { opacity: 0; animation: fadeIn 0.5s ease forwards; }.animate-slide-down { animation: slideDown 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards; }.animate-slide-up { animation: slideUp 0.6s ease forwards; }.animate-fade { animation: fadeIn 0.8s ease forwards; }.btn-back { background: #e5e5ea; border: none; padding: 10px 18px; border-radius: 10px; cursor: pointer; margin-bottom: 20px; font-weight: 600; }.pill { background: #e5e5ea; padding: 7px 14px; border-radius: 20px; font-size: 12px; cursor: pointer; margin: 4px; display: inline-block; font-weight: 600; }@media (max-width: 850px) { .layout-grid { grid-template-columns: 1fr; } .news-item { flex-direction: column; } .news-thumb { width: 100%; height: 200px; } }