/*
Theme Name: StreamPro
Theme URI: https://example.com/streampro
Author: Gemini
Author URI: https://gemini.google.com
Description: A modern, dark-themed IPTV streaming platform WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: iptv, streaming, dark-theme, entertainment
Text Domain: streampro
*/

:root {
    --primary-color: #3b82f6;
    --secondary-color: #7c3aed;
    --dark-bg: #0a0a0f;
    --card-dark: #111827;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --gradient-start: #7c3aed;
    --gradient-end: #3b82f6;

    --font-primary: 'Inter', sans-serif;

    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
}

.card {
    background-color: var(--card-dark);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.glassmorphism {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}
