/*
Theme Name: in2in Sports Portal
Theme URI: https://in2in-sports.com
Author: in2in Sports Engineering Team
Author URI: https://in2in-sports.com
Description: Production-ready, ultra-fast real-time sports portal theme for WordPress. Features live scores ticker, match tactical radar, transfer rumors tracker, league standings, multi-language support (English, Spanish, Arabic RTL), and AI match analyst integration.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: sports, live-scores, news, dark-mode, responsive-layout, custom-post-types, rtl-language-support
Text Domain: in2in-sports
Domain Path: /inc
*/

/* Reset & Global Base Styles for WordPress Theme */
body {
  margin: 0;
  padding: 0;
  background-color: #0B0E14;
  color: #a1a1aa;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure WordPress Admin Bar plays nice with fixed header */
body.admin-bar .in2in-sticky-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .in2in-sticky-header {
    top: 46px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0B0E14;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4FF00;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
