.stable-page{
  padding:12px;
  border-radius:12px;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('/assets/img/backgrounds/stable_bg.jpg');
  background-size: cover;
  background-position: center;
}

.stable-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:12px;
}

.stable-card{
  border:1px solid #333;
  background:#0f0f0f;
  border-radius:12px;
  overflow:hidden;
  display:grid;
  grid-template-columns: 260px 1fr;
}

.stable-card.active{
  border-color:#5aa75a;
}

.stable-card.locked{
  opacity:.9;
}

.stable-thumb{
  width:100%;
  aspect-ratio: 1 / 1;
  background:#0b0b0b;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border-right:1px solid #222;
}

.stable-thumb img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}

.stable-info{
  padding:12px;
}

.stable-title{
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

.stable-badge{
  font-size:12px;
  padding:3px 8px;
  border:1px solid #3b7c3b;
  border-radius:999px;
  background:#113011;
}

.stable-desc{
  margin-top:6px;
  opacity:.9;
  font-size:13px;
}

.stable-meta{
  margin-top:8px;
  font-size:13px;
  opacity:.95;
  line-height:1.35;
}

.stable-form{
  margin-top:10px;
}

.stable-locked{
  margin-top:10px;
  opacity:.9;
  font-size:13px;
}

.mount-speed-bar{
  width:140px;
  height:6px;
  background:#222;
  border-radius:6px;
  margin-top:6px;
  overflow:hidden;
  border: 1px solid #333;
}

.mount-speed-fill{
  height:100%;
  background:linear-gradient(90deg,#4fc3f7,#7cffb6);
  transition:width .3s ease;
}

.mount-speed-text{
  font-size:12px;
  margin-top:4px;
  opacity:.9;
}

.mount-box{
  margin-bottom:12px;
  background:linear-gradient(180deg,#1a1a1a,#141414);
  border:1px solid #2c2c2c;
}

.mount-box-inner{
  display:flex;
  align-items:center;
  gap:14px;
}

.mount-box-image{
  width:90px;
  height:90px;
  flex:0 0 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #333;
  border-radius:10px;
  background:#111;
  padding:6px;
}

.mount-box-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.mount-box-info{
  flex:1;
}

.mount-box-name{
  font-size:17px;
  font-weight:700;
  margin-bottom:6px;
  color:#f5d27a;
}

.mount-box-desc{
  font-size:13px;
  color:#bbb;
  margin-bottom:8px;
}

.mount-box-bonus{
  font-size:14px;
  color:#9ad1ff;
}

@media (max-width: 700px){
  .stable-card{
    grid-template-columns: 1fr;
  }

  .stable-thumb{
    border-right:none;
    border-bottom:1px solid #222;
  }

  .mount-box-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

.mount-carry {
  margin-top: 8px;
  font-size: 14px;
  color: #d7d7d7;
  font-weight: 600;
}


.gryphon-preview {
  margin-top: 12px;
  text-align: center;
}

.gryphon-preview img {
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(200,200,255,0.3));
  transition: transform 0.2s ease;
}

.gryphon-preview img:hover {
  transform: scale(1.05);
}


@keyframes gryphonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.gryphon-preview img {
  animation: gryphonPulse 3s infinite;
}
