html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #082946;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
a { color: inherit; outline: none; }
img { border: 0; }

body {
    scrollbar-face-color: #174f7c;
    scrollbar-highlight-color: #2f7fb6;
    scrollbar-shadow-color: #061f34;
    scrollbar-3dlight-color: #061f34;
    scrollbar-arrow-color: #ffffff;
    scrollbar-track-color: #061f34;
    scrollbar-darkshadow-color: #061f34;
}

#page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 10px 14px 20px 14px;
    background:
      radial-gradient(circle at 18% 0%, rgba(53,136,193,.16) 0, rgba(53,136,193,0) 260px),
      linear-gradient(180deg, #092d4c 0%, #082946 55%, #061f34 100%);
    min-height: 100%;
}

#links {
    width: 100%;
    padding: 8px 8px 2px 8px;
    margin: 0 0 14px 0;
    background: rgba(13,56,93,.50);
    border: 1px solid rgba(61,130,183,.28);
    border-radius: 4px;
}
#links a {
    float: left;
    display: block;
    padding: 8px 14px;
    margin: 0 7px 7px 0;
    color: #dcefff;
    text-decoration: none;
    font-size: 13px;
    line-height: 17px;
    border: 1px solid rgba(70,143,197,.55);
    background: rgba(9,39,65,.92);
    border-radius: 3px;
    font-weight: bold;
}
#links a:hover {
    background:#2f7fb6;
    border-color:#95d3ff;
    color:#ffffff;
}

.section {
    width: 100%;
    padding: 10px 0 12px 0;
}
.section-head {
    width: 100%;
    min-height: 30px;
    margin-bottom: 8px;
}
.section-head h2 {
    float: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 900;
    text-shadow: 0 1px 0 rgba(0,0,0,.45);
}
.arrows { float: right; }
.arrows a, .arrows span {
    float:left;
    display:block;
    width:28px;
    height:28px;
    line-height:26px;
    text-align:center;
    margin-left:6px;
    border:1px solid rgba(67,139,193,.7);
    background:rgba(9,39,65,.92);
    font-weight:bold;
    color:#dcefff;
    text-decoration:none;
    user-select:none;
    cursor:pointer;
    box-sizing:border-box;
    border-radius:2px;
}
.arrows a:hover { background:#2f7fb6; border-color:#95d3ff; }
.arrows .disabled { opacity:.35; cursor:default; pointer-events:none; }
.section.loading { opacity:.58; pointer-events:none; }

.cards {
    width: 100%;
}
.card {
    display: block;
    width: calc(50% - 8px);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(75,145,196,.76);
    background: #102c46;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    min-height: 210px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 6px 18px rgba(0,0,0,.12);
}
.card.left { float: left; }
.card.right { float: right; }
.card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    border: 0;
    transition: transform .25s ease;
}
.card:hover img {
    transform: scale(1.03);
}
.caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px 12px 14px;
    min-height: 84px;
    background: linear-gradient(180deg, rgba(8,28,47,.05) 0%, rgba(7,31,52,.78) 18%, rgba(7,31,52,.94) 100%);
    transition: all .25s ease;
}
.caption span {
    display: block;
    margin-bottom: 6px;
    color: #9db8d3;
    font-size: 11px;
}
.caption strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    text-shadow: 0 1px 0 rgba(0,0,0,.45);
}
.caption .excerpt {
    display: none;
    margin-top: 14px;
    color: #9fb4ca;
    font-size: 12px;
    line-height: 1.45;
    max-height: 92px;
    overflow: hidden;
}
.card:hover .caption {
    top: 0;
    bottom: 0;
    background: rgba(7,31,52,.72);
}
.card:hover .caption .excerpt {
    display: block;
}
.clear { clear: both; height: 0; overflow: hidden; }

.launcher-brand,
.launcher-visual {
    display: none !important;
}

@media (max-width: 980px) {
    #page { padding: 9px 12px 18px; }
    .card img { height: 190px; }
    .card { min-height: 190px; }
    .caption strong { font-size: 14px; }
}
@media (max-width: 700px) {
    .card { width: 100%; float: none !important; min-height: 180px; }
    .card img { height: 180px; }
    .section-head h2 { font-size: 17px; }
    .arrows { float:none !important; display:block; text-align:right; padding-top:6px; }
    .arrows a, .arrows span { float:none; display:inline-block; margin-left:5px; }
}
@media (max-width: 520px) {
    #links a { width: calc(50% - 7px); text-align:center; }
}
@media (max-width: 420px) {
    #page { padding: 8px 9px 18px; }
    #links a { width:100%; margin-right:0; }
    .card { min-height: 164px; }
    .card img { height: 164px; }
    .caption { padding: 8px 10px; }
    .caption strong { font-size: 14px; }
}


/* TR/EN Language Switch */
.dm-lang-switch.public-lang{float:right;display:inline-flex;align-items:center;gap:5px;border:1px solid rgba(70,143,197,.55);border-radius:3px;padding:6px 9px;background:rgba(9,39,65,.92);font-size:13px;font-weight:bold;color:#dcefff;margin:0 0 7px 7px}
.dm-lang-switch.public-lang a{color:#dcefff;text-decoration:none;opacity:.65;padding:2px 4px;border-radius:3px}
.dm-lang-switch.public-lang a.active{opacity:1;background:#2f7fb6;color:#fff}
.dm-lang-switch.public-lang span{opacity:.45}
