/*
Theme Name: LiveXBall - ดูบอลสด
Description: ธีมสำหรับเว็บไซต์ดูบอลสดออนไลน์ พร้อม Tailwind CSS
Version: 1.0
Author: LiveXBall Team
*/

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom CSS */
body {
    font-family: 'Prompt', sans-serif;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.match-card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dark-gradient {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}
