.social-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.social-box {
    text-align: center;
    transition: transform 0.3s;
}
.social-box:hover {
    transform: translateY(-6px);
}
.social-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    animation: ssp-glow 2s infinite alternate;
}
@keyframes ssp-glow {
    0%   { box-shadow: 0 0 10px rgba(255,255,255,0.4); }
    100% { box-shadow: 0 0 20px rgba(255,255,255,0.9); }
}
.youtube-logo   { background-color: #FF0000; }
.wikipedia-logo { background-color: #111111; }
.rt-logo {
    background: #1c1c1c;
    border: 2px solid #fa320a;
    box-shadow: 0 0 15px rgba(250,50,10,0.5);
}
.rt-icon { font-size: 40px; line-height: 1; filter: drop-shadow(0 0 4px rgba(250,50,10,0.8)); }
.imdb-logo {
    background-color: #f5c518;
    color: #000;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 80px;
    box-shadow: 0 0 15px rgba(255,220,0,0.6);
}
.social-label {
    font-size: 14px;
    font-weight: bold;
    color: #aa3300;
    margin-top: 6px;
}
.social-sublabel {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}
.imdb-rating {
    font-size: 14px;
    font-weight: bold;
    margin-top: 4px;
    color: #444;
}
.rt-fresh  { color: #28a745 !important; }
.rt-rotten { color: #dc3545 !important; }
.na-badge {
    display: inline-block;
    background: #555;
    color: #ccc;
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.big-action-buttons {
    text-align: center;
    margin-top: 40px;
}
.action-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.action-button-wrapper a {
    width: 280px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: 0.3s ease-in-out;
    animation: ssp-glow 2s infinite alternate, ssp-pulse 2s infinite;
}
.telegram-btn { background-color: #229ED9; }
.facebook-btn { background-color: #1877F2; }
@keyframes ssp-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.player-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 10px;
}
.ultra-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: sans-serif;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2),inset 0 -3px 0 rgba(0,0,0,0.2),inset 0 3px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    max-width: 90%;
}
.ultra-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}
.ultra-btn:hover::after { opacity: 1; transform: scale(1); }
.ultra-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3),inset 0 -3px 0 rgba(0,0,0,0.2),inset 0 3px 0 rgba(255,255,255,0.4);
}
.player-btn {
    background: linear-gradient(135deg, #ff007f 0%, #6600ff 100%);
    animation: ssp-ultra-pulse 2.5s infinite;
}
.player-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}
.main-txt {
    font-size: 18px;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sub-txt {
    font-size: 13px;
    font-weight: 600;
    color: #ffd1e8;
    letter-spacing: 0.5px;
}
.icon-anim-pop {
    font-size: 34px;
    animation: ssp-pop 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-block;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3));
}
@keyframes ssp-pop {
    0%,100% { transform: translateY(0) scale(1) rotate(0deg); }
    20%     { transform: translateY(-6px) scale(1.3) rotate(15deg); }
    40%     { transform: translateY(-2px) scale(1.1) rotate(-5deg); }
    60%     { transform: translateY(-4px) scale(1.2) rotate(10deg); }
    80%     { transform: translateY(0px) scale(1.05) rotate(-2deg); }
}
@keyframes ssp-ultra-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(204,0,255,0.6),inset 0 -3px 0 rgba(0,0,0,0.2); }
    70%  { box-shadow: 0 0 0 15px rgba(204,0,255,0),inset 0 -3px 0 rgba(0,0,0,0.2); }
    100% { box-shadow: 0 0 0 0 rgba(204,0,255,0),inset 0 -3px 0 rgba(0,0,0,0.2); }
}