body { margin: 0; background: #0f0f0f; color: #eee; font-family: 'Segoe UI', sans-serif; }

.hero { background: #161616; padding: 60px 20px; text-align: center; border-bottom: 2px solid #333; }
.levitating-red-title { color: #ff0000; font-size: 64px; font-weight: 900; margin: 0; display: inline-block; animation: floatAnim 3s ease-in-out infinite; text-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }

@keyframes floatAnim { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.layout { display: flex; gap: 40px; padding: 30px; max-width: 1200px; margin: 0 auto; }
.left { width: 260px; display: flex; flex-direction: column; }
.center { flex: 1; }

/* WYRÓWNANIE */
.top-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 185px; /* Dokładna wysokość przycisków */
}

.section-o-kanale {
    min-height: 185px; /* Musi być taka sama jak top-group */
    margin-bottom: 40px;
    box-sizing: border-box;
}

.bottom-group {
    margin-top: 5px; /* Skorygowane, żeby dół sekcji pasował */
}

.side-btn { display: flex; align-items: center; gap: 12px; padding: 12px 15px; background: #1a1a1a; color: white; text-decoration: none; border-radius: 10px; font-weight: bold; border: 2px solid #333; transition: 0.2s; }
.side-btn img { width: 22px; height: 22px; }
.side-btn.youtube { border-color: #ff0000; }
.side-btn.discord { border-color: #5865F2; }
.side-btn.tipply { border-color: #ffaa00; }
.side-btn:hover { background: #252525; transform: translateX(5px); }

.photo-label { font-weight: bold; text-align: center; margin-bottom: 10px; font-size: 20px; }
.white-frame { border: 3px solid #fff; border-radius: 12px; overflow: hidden; }
.main-photo { width: 100%; display: block; height: auto; }

.card, .stats-box { background: #1a1a1a; padding: 25px; border-radius: 15px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.stat-card { background: #222; padding: 15px; border-radius: 10px; text-align: center; border: 1px solid #333; }
.counter { font-size: 26px; color: #00bcd4; font-weight: bold; margin: 5px 0 0; }
h2 { color: #ff5a00; margin-top: 0; }