/*
Theme Name: VTPilix Custom Theme
Theme URI: https://vtpilix.store
Author: Agent
Description: Modern, dark mode, high-end IPTV custom theme with Ubuntu typography and heavy SEO focus.
Version: 1.0
Text Domain: vtpilix
*/

:root {
  --primary: #8a2be2; /* vibrant purple */
  --bg-dark: #0f172a;
  --text-main: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

/* We will add more premium styles as we build out components */
