:root{
  --primary:#d4af37;
  --secondary:#0f172a;
  --bg:#050914;
  --card:#0b1220;
  --text:#ffffff;
  --muted:#a5b4cc;
  --border:rgba(255,255,255,.08);
  --shadow:0 15px 40px rgba(0,0,0,.30);
}

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

body{
  font-family:Inter,Arial,sans-serif;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(44,145,255,.12), transparent 25%),
    var(--bg);
  color:var(--text);
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:25;
  background:rgba(3,7,18,.72);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:8px 0;
  min-height:68px;
}

.brand-link{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.brand-text{
  font-size:32px;
  font-weight:800;
}

.brand-logo{
  max-height:56px;
  width:auto;
}

.site-actions,
.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.site-actions-compact{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  margin-left:auto;
  flex-wrap:nowrap;
}

.register-link{
  color:#f2ca58;
  font-weight:700;
  padding:8px 2px;
  font-size:14px;
  opacity:.95;
}

/* USER MENU */
.user-menu{
  position:relative;
  flex:0 0 auto;
}

.user-menu-trigger{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(212,175,55,.22);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  min-height:44px;
  white-space:nowrap;
}

.user-avatar{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#f2ca58);
  color:#111;
  font-weight:800;
  font-size:15px;
  flex:0 0 34px;
}

.user-name{
  font-weight:700;
  max-width:140px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.user-caret{
  opacity:.8;
}

.user-dropdown{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:200px;
  background:linear-gradient(180deg,rgba(15,23,42,.98),rgba(11,18,32,1));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 15px 35px rgba(0,0,0,.35);
  border-radius:16px;
  padding:8px;
  display:none;
  z-index:80;
}

.user-menu.open .user-dropdown{
  display:block;
}

.user-dropdown a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  color:#fff;
}

.user-dropdown a:hover{
  background:rgba(255,255,255,.05);
}

.user-dropdown .danger-link{
  color:#ffb3b3;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,var(--primary),#f2ca58);
  color:#1a1a1a;
  font-weight:700;
  cursor:pointer;
  box-shadow:var(--shadow);
}

.btn.small{
  padding:10px 14px;
  font-size:14px;
}

.btn.secondary{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(212,175,55,.55);
  box-shadow:none;
}

/* CARD */
.card{
  background:linear-gradient(180deg,rgba(15,23,42,.95),rgba(11,18,32,.98));
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:22px;
}

/* SLIDER */
.hero-top-slider{
  padding:24px 0 14px;
}

.top-slider{
  position:relative;
  padding:14px;
  overflow:hidden;
  height:420px;
  border-radius:22px;
}

.top-slider-track{
  position:relative;
  width:100%;
  height:100%;
}

.top-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .45s ease;
}

.top-slide.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  z-index:2;
}

.top-slide-link{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:16px;
}

.top-slide picture{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(180deg,#0d1730,#09111f);
}

.top-slide picture source{
  display:none;
}

.top-slide picture img{
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  border-radius:16px;
}

.top-slide-overlay{
  position:absolute;
  left:24px;
  bottom:24px;
  right:auto;
  z-index:4;
  max-width:620px;
  padding:20px;
  border-radius:18px;
  background:rgba(3,7,18,.55);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.top-slide-overlay h2{
  margin:0 0 8px;
  font-size:32px;
  line-height:1.1;
  font-weight:900;
}

.top-slide-overlay p{
  margin:0 0 14px;
  color:#d7deea;
  line-height:1.5;
  font-size:15px;
}

.top-slider-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}

.top-slider-dot{
  width:12px;
  height:12px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  cursor:pointer;
}

.top-slider-dot.active{
  background:var(--primary);
}

/* LAYOUT */
.main-stack{
  display:flex;
  flex-direction:column;
  gap:24px;
  padding:8px 0 48px;
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:14px;
}

.section-head h2{
  margin:0;
  font-size:30px;
}

.section-head p{
  margin:0;
  color:var(--muted);
}

/* SPONSORS */
.sponsor-grid-compact{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.sponsor-card-compact{
  position:relative;
  overflow:hidden;
  min-height:320px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:linear-gradient(180deg, rgba(17,24,39,.96), rgba(11,18,32,.99));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:14px;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
  box-shadow:0 10px 28px rgba(0,0,0,.24);
}

.sponsor-card-compact::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.03) 35%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.03) 65%,
    transparent 100%
  );
  transform:translateX(-120%);
  transition:transform .7s ease;
}

.sponsor-card-compact:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 42px rgba(0,0,0,.34);
  border-color:rgba(212,175,55,.35);
}

.sponsor-card-compact:hover::after{
  transform:translateX(120%);
}

.sponsor-card-compact.glow::before,
.sponsor-card-compact.line::before{
  content:"";
  position:absolute;
  inset:0;
  padding:1.5px;
  border-radius:18px;
  background:linear-gradient(
    90deg,
    rgba(0,210,255,.9),
    rgba(124,245,255,.9),
    rgba(242,202,88,.95),
    rgba(255,78,205,.9),
    rgba(0,210,255,.9)
  );
  background-size:240% 240%;
  animation:sponsorBorderShift 6s linear infinite;
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.9;
}

.sponsor-card-compact.none::before{
  display:none;
}

@keyframes sponsorBorderShift{
  0%{background-position:0% 50%}
  100%{background-position:200% 50%}
}

.sponsor-card-compact img{
  width:100%;
  height:170px;
  object-fit:contain;
  border-radius:14px;
  background:rgba(255,255,255,.02);
  padding:10px;
  transition:transform .35s ease, filter .35s ease;
  box-shadow:0 8px 22px rgba(0,0,0,.22);
}

.sponsor-card-compact:hover img{
  transform:scale(1.03);
  filter:saturate(1.06) contrast(1.03);
}

.sponsor-card-compact h3{
  margin:14px 0 8px;
  font-size:22px;
  line-height:1.15;
}

.sponsor-card-compact p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.5;
  min-height:48px;
  font-size:14px;
}

.sponsor-card-compact .btn.small{
  width:100%;
  justify-content:center;
  border-radius:12px;
  transition:transform .22s ease, box-shadow .22s ease;
}

.sponsor-card-compact:hover .btn.small{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(212,175,55,.22);
}

.info-box{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
}

.footer-section{
  margin-top:4px;
}

.social-row-strong{
  gap:14px;
}

.social-pill{
  padding:12px 16px;
  border:1px solid rgba(212,175,55,.28);
  border-radius:999px;
  background:rgba(255,255,255,.02);
  color:var(--text);
}

/* SOCIAL ICON PILLS */
.social-pill-icon{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border:1px solid rgba(212,175,55,.28);
  border-radius:999px;
  background:rgba(255,255,255,.02);
  color:var(--text);
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}

.social-pill-icon:hover{
  transform:translateY(-2px);
  border-color:rgba(212,175,55,.5);
  background:rgba(255,255,255,.04);
}

.social-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#f2ca58;
  flex:0 0 20px;
}

.social-icon svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}

.social-label{
  font-weight:700;
  line-height:1;
}

/* POPUP */
.popup-overlay{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(2,6,18,.68);
  backdrop-filter:blur(6px);
  z-index:60;
  padding:20px;
}

.popup-box{
  width:min(680px,100%);
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
  position:relative;
}

.popup-close{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.08);
  color:white;
  font-size:22px;
  cursor:pointer;
}

/* AUTH / ACCOUNT */
.auth-wrap{
  padding:48px 0;
}

.auth-card{
  width:min(620px,100%);
  margin:0 auto;
}

.account-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  padding:34px 0;
}

.grid{
  display:grid;
  gap:16px;
}

.admin-two-col{
  grid-template-columns:1.05fr 1.4fr;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field label{
  font-size:14px;
  color:var(--muted);
  font-weight:600;
}

.field input,
.field textarea,
.field select{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background:#09111f;
  color:white;
  border-radius:12px;
  padding:12px 14px;
  outline:none;
}

.field textarea{
  min-height:120px;
  resize:vertical;
}

.table-wrap{
  overflow:auto;
}

.table{
  width:100%;
  border-collapse:collapse;
}

.table th,
.table td{
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:top;
}

.muted{
  color:var(--muted);
}

.info-list{
  display:grid;
  gap:10px;
}

.flash{
  padding:14px 16px;
  border-radius:14px;
  margin:14px 0;
  border:1px solid var(--border);
}

.flash.success{
  background:rgba(20,110,40,.25);
  color:#dbffe3;
}

.flash.error{
  background:rgba(120,20,20,.25);
  color:#ffd7d7;
}

.inline-form{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.inline-form input{
  max-width:130px;
}

/* ADMIN */
.admin-body{
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.10), transparent 24%),
    radial-gradient(circle at bottom right, rgba(44,145,255,.12), transparent 26%),
    #030712;
}

.admin-shell{
  display:grid;
  grid-template-columns:280px 1fr;
  min-height:100vh;
}

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  background:rgba(3,7,18,.88);
  backdrop-filter:blur(10px);
  z-index:50;
  border-bottom:1px solid var(--border);
}

.brand{
  font-weight:800;
}

.menu-btn{
  width:42px;
  height:42px;
  border:none;
  border-radius:12px;
  background:#111b2d;
  color:white;
  cursor:pointer;
  font-size:22px;
}

.sidebar{
  padding:96px 18px 18px;
  border-right:1px solid var(--border);
  background:#06101d;
}

.sidebar nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sidebar a{
  display:block;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:#0b1525;
}

.content{
  padding:96px 24px 24px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:18px;
}

.stat-box{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.stat-box strong{
  font-size:34px;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .sponsor-grid-compact{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .top-slider{
    height:360px;
  }

  .top-slide-overlay{
    max-width:540px;
  }

  .top-slide-overlay h2{
    font-size:28px;
  }
}

@media (max-width: 980px){
  .account-grid,
  .admin-two-col,
  .stats-grid,
  .info-box{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  .admin-shell{
    grid-template-columns:1fr;
  }

  .sidebar{
    position:fixed;
    top:72px;
    left:0;
    bottom:0;
    width:280px;
    transform:translateX(-102%);
    transition:.25s ease;
    z-index:45;
  }

  body.nav-open .sidebar{
    transform:translateX(0);
  }

  .content{
    padding:96px 14px 24px;
  }
}

@media (max-width: 768px){
  .header-row{
    flex-direction:row;
    align-items:center;
    min-height:60px;
  }

  .container{
    width:min(100% - 20px,1180px);
  }

  .top-slider{
    height:292px;
    padding:8px;
  }

  .top-slide picture img{
    border-radius:18px;
  }

  .top-slide-overlay{
    left:18px;
    right:18px;
    bottom:18px;
    width:auto;
    max-width:calc(100% - 36px);
    padding:10px 12px;
    border-radius:20px;
    background:linear-gradient(180deg, rgba(12,16,30,.34), rgba(10,14,26,.52));
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.09);
    box-shadow:
      0 12px 26px rgba(0,0,0,.26),
      inset 0 1px 0 rgba(255,255,255,.06);
  }

  .top-slide-overlay h2{
    margin:0 0 4px;
    font-size:16px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:-0.3px;
  }

  .top-slide-overlay p{
    margin:0 0 8px;
    font-size:10.5px;
    line-height:1.3;
    color:rgba(255,255,255,.80);
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .top-slide-overlay .btn{
    min-height:34px;
    padding:7px 12px;
    font-size:12px;
    font-weight:800;
    border-radius:11px;
    box-shadow:0 6px 16px rgba(212,175,55,.18);
  }

  .top-slider-dots{
    bottom:10px;
    gap:7px;
  }

  .top-slider-dot{
    width:10px;
    height:10px;
  }

  .brand-logo{
    max-height:46px;
  }

  .user-name{
    display:none;
  }

  .site-actions-compact{
    gap:10px;
  }

  .register-link{
    font-size:14px;
  }

  /* PROMOKOD + ÇARK */
  .info-box{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .info-box .card{
    padding:16px !important;
    border-radius:20px !important;
    min-height:auto !important;
    background:
      radial-gradient(circle at top right, rgba(212,175,55,.06), transparent 28%),
      linear-gradient(180deg, rgba(15,23,42,.96), rgba(8,14,28,.98)) !important;
    border:1px solid rgba(255,255,255,.07) !important;
    box-shadow:
      0 14px 30px rgba(0,0,0,.22),
      inset 0 1px 0 rgba(255,255,255,.03) !important;
  }

  .info-box .card h3{
    margin:0 0 6px !important;
    font-size:22px !important;
    line-height:1.05 !important;
    font-weight:800 !important;
    letter-spacing:-0.3px !important;
  }

  .info-box .card p{
    margin:0 0 12px !important;
    font-size:14px !important;
    line-height:1.4 !important;
    color:rgba(255,255,255,.78) !important;
  }

  .info-box .card .btn.small{
    min-height:40px !important;
    padding:10px 16px !important;
    font-size:14px !important;
    font-weight:800 !important;
    border-radius:12px !important;
    box-shadow:0 6px 16px rgba(212,175,55,.14) !important;
  }

  /* SOSYAL MEDYA */
  .footer-section.card{
    padding:18px 16px !important;
    border-radius:20px !important;
    background:
      radial-gradient(circle at top right, rgba(212,175,55,.06), transparent 28%),
      linear-gradient(180deg, rgba(15,23,42,.96), rgba(8,14,28,.98)) !important;
    border:1px solid rgba(255,255,255,.07) !important;
    box-shadow:
      0 14px 30px rgba(0,0,0,.22),
      inset 0 1px 0 rgba(255,255,255,.03) !important;
  }

  .footer-section .section-head{
    margin-bottom:14px !important;
  }

  .footer-section .section-head h2{
    margin:0 0 6px !important;
    font-size:26px !important;
    line-height:1.02 !important;
    font-weight:900 !important;
    letter-spacing:-0.5px !important;
  }

  .footer-section .section-head p{
    margin:0 !important;
    font-size:14px !important;
    line-height:1.42 !important;
    color:rgba(255,255,255,.72) !important;
  }

  .social-row-strong{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:10px !important;
  }

  .social-pill-icon{
    width:100% !important;
    min-height:50px !important;
    justify-content:flex-start !important;
    padding:12px 14px !important;
    border-radius:16px !important;
    background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)) !important;
    border:1px solid rgba(212,175,55,.22) !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.03) !important;
    gap:8px;
  }

  .social-icon,
  .social-icon svg{
    width:18px !important;
    height:18px !important;
  }

  .social-label{
    font-size:13px !important;
    font-weight:800 !important;
    line-height:1 !important;
  }
}

/* SLIDER FIX - ZORLA ÜST ÜSTE */
.top-slider-track{
  position:relative !important;
}

.top-slide{
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  width:100% !important;
  height:100% !important;
}

.top-slide:not(.active){
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

.top-slide.active{
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  z-index:2 !important;
}

/* MOBILE SPONSOR FORCE FIX */
@media (max-width: 768px){
  .sponsor-grid-compact{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:10px !important;
    align-items:start !important;
  }

  .sponsor-card-compact{
    min-height:auto !important;
    padding:8px !important;
    border-radius:12px !important;
  }

  .sponsor-card-compact img{
    height:72px !important;
    object-fit:contain !important;
    padding:6px !important;
    border-radius:10px !important;
  }

  .sponsor-card-compact h3{
    margin:8px 0 4px !important;
    font-size:12px !important;
    line-height:1.2 !important;
    word-break:break-word !important;
  }

  .sponsor-card-compact p{
    margin:0 0 8px !important;
    min-height:auto !important;
    font-size:10px !important;
    line-height:1.3 !important;
    display:-webkit-box !important;
    -webkit-line-clamp:2 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
  }

  .sponsor-card-compact .btn.small{
    width:100% !important;
    min-height:30px !important;
    padding:6px 8px !important;
    font-size:11px !important;
    border-radius:10px !important;
  }
@media (max-width: 768px){
  .info-box{
    gap:10px !important;
  }

  .info-box .card{
    padding:14px !important;
    border-radius:18px !important;
  }

  .info-box .card h3{
    font-size:18px !important;
    margin:0 0 6px !important;
    line-height:1.05 !important;
  }

  .info-box .card p{
    font-size:13px !important;
    margin:0 0 10px !important;
    line-height:1.35 !important;
    color:rgba(255,255,255,.76) !important;
  }

  .info-box .card .btn.small{
    min-height:36px !important;
    padding:8px 14px !important;
    font-size:13px !important;
    border-radius:11px !important;
    box-shadow:0 4px 12px rgba(212,175,55,.14) !important;
  }

  .footer-section.card{
    padding:16px 14px !important;
    border-radius:18px !important;
  }

  .footer-section .section-head{
    margin-bottom:10px !important;
  }

  .footer-section .section-head h2{
    font-size:22px !important;
    margin:0 0 6px !important;
    line-height:1.02 !important;
  }

  .footer-section .section-head p{
    font-size:13px !important;
    line-height:1.38 !important;
    color:rgba(255,255,255,.72) !important;
    margin:0 !important;
  }

  .social-row-strong{
    gap:8px !important;
  }

  .social-pill-icon{
    min-height:46px !important;
    padding:10px 12px !important;
    border-radius:14px !important;
  }

  .social-label{
    font-size:12.5px !important;
    font-weight:800 !important;
  }

  .social-icon,
  .social-icon svg{
    width:17px !important;
    height:17px !important;
  }
  
  .site-footer{
  width:100%;
  margin-top:30px;
  padding:18px 12px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;

  text-align:center;

  font-size:13px;
  font-weight:500;
  color:rgba(255,255,255,.55);

  border-top:1px solid rgba(255,255,255,.06);
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.25));
}

.site-footer span:first-child{
  font-weight:600;
  color:rgba(255,255,255,.75);
}