.metadoku-animated-banner {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-size: 400% 400%;
    animation: mdGradient 6s ease infinite;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border: 1px solid rgba(150,100,255,0.3);
    box-shadow: 0 8px 30px rgba(80,50,200,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.metadoku-animated-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(100,70,255,0.5);
}
@keyframes mdGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.md-particles { position: absolute; inset: 0; pointer-events: none; }
.md-particles span {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(180,140,255,0.6);
    animation: mdFloat 4s infinite;
}
.md-particles span:nth-child(1) { top:15%; left:10%; animation-delay:0s; }
.md-particles span:nth-child(2) { top:70%; left:20%; animation-delay:0.8s; }
.md-particles span:nth-child(3) { top:30%; left:85%; animation-delay:1.5s; }
.md-particles span:nth-child(4) { top:80%; left:75%; animation-delay:0.3s; }
.md-particles span:nth-child(5) { top:50%; left:50%; animation-delay:2s; width:6px; height:6px; }
.md-particles span:nth-child(6) { top:10%; left:60%; animation-delay:1s; }
@keyframes mdFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50%       { transform: translateY(-12px) scale(1.4); opacity: 1; }
}
.md-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    position: relative;
    z-index: 2;
    animation: mdGlow 2.5s ease-in-out infinite;
}
.md-logo-meta { color: #fff; }
.md-logo-doku { color: #a78bfa; }
@keyframes mdGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(167,139,250,0.5); }
    50%       { text-shadow: 0 0 20px rgba(167,139,250,1), 0 0 40px rgba(167,139,250,0.5); }
}
.md-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    position: relative; z-index: 2;
}
.md-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 120px;
    position: relative;
    z-index: 2;
}
.md-cell {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    animation: mdCellPop 3s ease-in-out infinite;
}
.md-cell-hi {
    background: rgba(167,139,250,0.4);
    border-color: rgba(167,139,250,0.8);
    color: #fff;
    box-shadow: 0 0 8px rgba(167,139,250,0.6);
    animation: mdCellGlow 1.8s ease-in-out infinite;
}
@keyframes mdCellPop {
    0%, 90%, 100% { transform: scale(1); }
    95%            { transform: scale(1.1); color: #a78bfa; }
}
@keyframes mdCellGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(167,139,250,0.5); }
    50%       { box-shadow: 0 0 14px rgba(167,139,250,1); }
}
.md-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.62rem;
    margin: 0;
    position: relative; z-index: 2;
}
.md-cta {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 18px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    animation: mdPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(124,58,237,0.6);
}
@keyframes mdPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(124,58,237,0.6); transform: scale(1); }
    50%       { box-shadow: 0 6px 25px rgba(124,58,237,0.9); transform: scale(1.04); }
}
