@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&display=swap');

body {
    font-family: 'Oxanium', cursive;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    min-height: 100vh;
    color: #fff;
}

.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1471&q=80');
    background-size: cover;
    background-position: center;
}

.streamer-card {
    box-shadow: 0 10px 30px rgba(113, 26, 217, 0.3);
    transition: transform 0.3s ease;
}

.streamer-card:hover {
    transform: translateY(-5px);
}

.live-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.platform-twitch { color: #9146FF; }
.platform-youtube { color: #FF0000; }
.platform-twitter { color: #1DA1F2; }
.platform-instagram { color: #E1306C; }
.platform-discord { color: #5865F2; }

/* Responsive */
@media (max-width: 768px) {
  .form-control,
  .form-select {
    font-size: 14px;
  }

  .btn {
    font-size: 14px;
  }

  .table th,
  .table td {
    font-size: 13px;
  }
}