/*
Theme Name: TukTakMovies
Theme URI: https://tuktakmovies.com
Author: TukTak Studios
Author URI: https://tuktakmovies.com
Description: A cinematic Netflix-style streaming movie & TV show theme for WordPress with custom post types, video players, Top 10 rankings, and REST API integration.
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tuktakmovies-theme
Tags: movies, streaming, video, netflix-style, entertainment, dark-mode, responsive-layout, custom-post-types
*/

:root {
  --ttm-primary: #E50914;
  --ttm-dark: #141414;
  --ttm-card-bg: #181818;
  --ttm-card-hover: #222222;
  --ttm-text-light: #e5e5e5;
  --ttm-text-muted: #999999;
  --ttm-transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--ttm-dark);
  color: var(--ttm-text-light);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Netflix style typography */
.ttm-display-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Red brand accent button */
.ttm-btn-primary {
  background-color: var(--ttm-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: var(--ttm-transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.ttm-btn-primary:hover {
  background-color: #f40612;
  transform: scale(1.03);
}

.ttm-btn-secondary {
  background-color: rgba(109, 109, 110, 0.7);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: var(--ttm-transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.ttm-btn-secondary:hover {
  background-color: rgba(109, 109, 110, 0.45);
  transform: scale(1.03);
}
