@charset "UTF-8";
/**
 * ========================================
 * GAR FILMS - MAIN STYLESHEET
 * ========================================
 *
 * Modern, maintainable SCSS architecture
 * Organized using the 7-1 pattern
 *
 * HOW TO EDIT:
 * - Colors & fonts: utils/_variables.scss
 * - Reusable functions: utils/_mixins.scss
 * - Individual components: components/*.scss
 * - Content (text, images): src/data/content.js
 */
/**
 * ========================================
 * DESIGN VARIABLES
 * ========================================
 *
 * All design tokens (colors, fonts, spacing, etc.) in one place
 * Edit these values to change the entire site's appearance
 */
/**
 * ========================================
 * MIXINS & HELPER FUNCTIONS
 * ========================================
 *
 * Reusable SCSS mixins to keep code DRY (Don't Repeat Yourself)
 */
/**
 * ========================================
 * CSS RESET & BASE STYLES
 * ========================================
 *
 * Normalize browser defaults and set foundation styles
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #000000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 992px) {
  h1 {
    font-size: 5rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (min-width: 992px) {
  h2 {
    font-size: 4rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  h3 {
    font-size: 3rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  h4 {
    font-size: 2.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  h5 {
    font-size: 2rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (min-width: 992px) {
  h6 {
    font-size: 1.5rem;
  }
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.75;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #FF0000;
  text-decoration: none;
  transition: color 300ms ease, opacity 300ms ease;
}
a:hover {
  color: #FF3333;
}
a:focus-visible {
  outline: 2px solid #FF0000;
  outline-offset: 2px;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  border: none;
  outline: none;
}
input:focus,
textarea:focus {
  outline: 2px solid #FF0000;
  outline-offset: 2px;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.no-select {
  user-select: none;
}

.no-pointer-events {
  pointer-events: none;
}

/**
 * ========================================
 * BUTTONS
 * ========================================
 *
 * Reusable button components
 * Primary, Secondary, Ghost variations
 */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:disabled:hover {
  transform: none;
}
.btn__icon {
  margin-left: 0.5rem;
  transition: transform 300ms ease;
}
.btn:hover .btn__icon {
  transform: translateX(4px);
}

.btn--primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  background-color: #FF0000;
  color: #FFFFFF;
}
.btn--primary:hover {
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary:disabled:hover {
  transform: none;
}
.btn--primary:hover {
  background-color: #CC0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.btn--secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn--secondary:hover {
  transform: translateY(-2px);
}
.btn--secondary:active {
  transform: translateY(0);
}
.btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--secondary:disabled:hover {
  transform: none;
}
.btn--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.btn--ghost {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  background-color: transparent;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
}
.btn--ghost:hover {
  transform: translateY(-2px);
}
.btn--ghost:active {
  transform: translateY(0);
}
.btn--ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--ghost:disabled:hover {
  transform: none;
}
.btn--ghost:hover {
  color: #FF0000;
}

.btn--small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

.btn--block {
  width: 100%;
  display: block;
}

/**
 * ========================================
 * SECTION LAYOUTS
 * ========================================
 *
 * Reusable section containers and headers
 */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.section--dark {
  background-color: #000000;
  color: #FFFFFF;
}
.section--light {
  background-color: #FFFFFF;
  color: #000000;
}
.section--gray {
  background-color: #1a1a1a;
  color: #FFFFFF;
}
.section#about {
  background-image: url("../assets/team/founder1.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: transparent !important;
}
.section#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
  pointer-events: none;
}
.section#about .section-container,
.section#about .section-header,
.section#about .about,
.section#about .about__strength {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}
@media (max-width: 768px) {
  .section#about {
    background-attachment: scroll;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 4rem;
  }
}
.section-header__subheading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF0000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.section-header__heading {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .section-header__heading {
    font-size: 2rem;
  }
}
.section-header__description {
  font-size: 1.25rem;
  color: #999999;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .section-header__description {
    font-size: 1rem;
  }
}
.section--light .section-header__heading {
  color: #000000;
}
.section--light .section-header__description {
  color: #666666;
}

.section-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/**
 * ========================================
 * HEADER / NAVIGATION
 * ========================================
 *
 * Sticky header with smooth transitions
 * Mobile hamburger menu
 * Scroll-based styling changes
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: background-color 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 2px 20px rgba(255, 0, 0, 0.1);
}
.header__container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
@media (min-width: 768px) {
  .header__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .header__container {
    height: 80px;
  }
}
.header__logo {
  flex-shrink: 0;
  z-index: 1001;
}
.header__logo img {
  height: 35px;
  width: auto;
  transition: transform 300ms ease;
}
.header__logo img:hover {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .header__logo img {
    height: 50px;
  }
}
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
}
.header__logo-text span {
  color: #FF0000;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #1a1a1a;
    padding: 8rem 2rem 2rem;
    transition: right 300ms ease;
    overflow-y: auto;
  }
  .header__nav.active {
    right: 0;
  }
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
  }
}
.header__menu {
  display: flex;
  list-style: none;
}
@media (max-width: 767px) {
  .header__menu {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .header__menu {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
}
.header__menu-link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 300ms ease;
}
@media (max-width: 767px) {
  .header__menu-link {
    font-size: 1.25rem;
    padding: 1rem 0;
  }
}
.header__menu-link:hover {
  color: #FF0000;
}
.header__menu-link.active {
  color: #FF0000;
}
@media (min-width: 992px) {
  .header__menu-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF0000;
    transition: width 300ms ease;
  }
  .header__menu-link:hover::after, .header__menu-link.active::after {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__cta {
    margin-top: 2rem;
  }
}
.header__cta .btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  background-color: #FF0000;
  color: #FFFFFF;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
}
.header__cta .btn:hover {
  transform: translateY(-2px);
}
.header__cta .btn:active {
  transform: translateY(0);
}
.header__cta .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.header__cta .btn:disabled:hover {
  transform: none;
}
.header__cta .btn:hover {
  background-color: #CC0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}
@media (min-width: 992px) {
  .header__cta .btn {
    margin-left: 1rem;
  }
}
.header__lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  position: relative;
}
@media (max-width: 767px) {
  .header__lang-switcher {
    margin-left: 0;
    margin-top: 1.5rem;
    justify-content: flex-start;
    width: 100%;
  }
}
.header__lang-switcher .lang-globe-btn {
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.header__lang-switcher .lang-globe-btn .globe-icon {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  transition: all 300ms ease;
}
.header__lang-switcher .lang-globe-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header__lang-switcher .lang-globe-btn:hover .globe-icon {
  stroke: #FF0000;
  transform: scale(1.1);
}
.header__lang-switcher .lang-globe-btn:active {
  background: rgba(255, 255, 255, 0.15);
}
.header__lang-switcher .lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  z-index: 100;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .header__lang-switcher .lang-dropdown {
    left: 0;
    right: auto;
  }
}
.header__lang-switcher .lang-dropdown.open {
  display: block;
  animation: fadeInDown 0.3s ease;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header__lang-switcher .lang-option {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
  font-family: inherit;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__lang-switcher .lang-option:last-child {
  border-bottom: none;
}
.header__lang-switcher .lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.header__lang-switcher .lang-option.active {
  background: rgba(255, 0, 0, 0.2);
  color: #FF0000;
  font-weight: 700;
  border-left: 3px solid #FF0000;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease, background-color 300ms ease;
  transform-origin: center;
}
.header__hamburger:hover span {
  background-color: #FF0000;
}
.header__hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
.header__overlay {
  display: none;
}
@media (max-width: 767px) {
  .header__overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity 300ms ease, visibility 300ms ease;
  }
  .header__overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
}

/**
 * ========================================
 * HERO SECTION
 * ========================================
 *
 * Full-screen video background hero
 * Cinematic entrance for the website
 */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  z-index: 4;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}
.hero__title {
  font-size: 4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
}
.hero__subtitle {
  font-size: 2rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
.hero__description {
  font-size: 1.25rem;
  color: #999999;
  margin-bottom: 3rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.9s;
}
@media (max-width: 767px) {
  .hero__description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.hero__cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.2s;
}
.hero__cta .btn {
  min-width: 200px;
}
@media (max-width: 767px) {
  .hero__cta .btn {
    min-width: 160px;
    font-size: 0.875rem;
  }
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease forwards, bounce 2s ease infinite;
  animation-delay: 2s, 3s;
}
@media (max-width: 767px) {
  .hero__scroll-indicator {
    bottom: 2rem;
  }
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 2px;
  animation: scroll 2s ease infinite;
}
.hero__scroll-indicator p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}
/**
 * ========================================
 * SERVICES SECTION
 * ========================================
 *
 * Grid of service offerings
 */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.services__card {
  background-color: #1a1a1a;
  padding: 3rem;
  border-radius: 12px;
  transition: transform 300ms ease, box-shadow 300ms ease;
  border: 1px solid transparent;
}
.services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(255, 0, 0, 0.2);
  border-color: #FF0000;
}
.services__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.services__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.services__description {
  font-size: 1rem;
  color: #999999;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.services__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services__features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: #999999;
}
.services__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF0000;
  font-weight: 700;
}

/**
 * ========================================
 * PORTFOLIO SECTION
 * ========================================
 *
 * Video grid with hover effects
 * Lightbox/modal support
 */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.portfolio__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #1a1a1a;
}
.portfolio__item > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}
.portfolio__item:hover .portfolio__thumbnail {
  transform: scale(1.05);
}
.portfolio__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}
.portfolio__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 300ms ease;
}
.portfolio__category {
  font-size: 0.75rem;
  color: #FF0000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.portfolio__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.portfolio__client {
  font-size: 0.875rem;
  color: #999999;
}
.portfolio__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease, background-color 300ms ease;
}
.portfolio__play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #FFFFFF;
  margin-left: 3px;
}
.portfolio__item:hover .portfolio__play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #FF0000;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal__container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: calc(90vh - 60px);
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .video-modal__container {
    max-width: 100%;
    max-height: calc(80vh - 60px);
  }
}
.video-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 300ms ease;
}
.video-modal__close:hover {
  color: #FF0000;
  border-color: #FF0000;
  background: rgba(0, 0, 0, 0.9);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .video-modal__close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.9);
    border-width: 2px;
  }
}
.video-modal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/**
 * ========================================
 * CLIENTS SECTION
 * ========================================
 *
 * Logo grid for client/partner showcase
 */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: center;
}
@media (max-width: 767px) {
  .clients__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
  }
}
.clients__logo-container {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
@media (max-width: 767px) {
  .clients__logo-container {
    padding: 1.5rem;
    min-height: 100px;
  }
}
.clients__logo-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.clients__logo {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 300ms ease, opacity 300ms ease;
}
.clients__logo-container:hover .clients__logo {
  filter: grayscale(0%);
  opacity: 1;
}

/**
 * ========================================
 * ABOUT SECTION - PARALLAX HERO
 * ========================================
 *
 * About section with parallax background image
 * and simplified emoji-based team cards
 */
.about {
  position: relative;
}
.about__strengths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .about__strengths {
    gap: 2rem;
    margin-bottom: 6rem;
  }
}
.about__strength {
  text-align: center;
  padding: 2rem;
  background-color: transparent;
}
.about__strength-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF0000;
  margin-bottom: 1rem;
}
.about__strength-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}
.about__team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__team {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.about__member {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 300ms ease, border-color 300ms ease;
}
.about__member-image:hover {
  transform: translateY(-5px);
  border-color: #ff3333;
}
.about__member-image img {
  display: none;
}
.about__member-image svg {
  width: 60px;
  height: 60px;
}
.about__member-name {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.about__member-role {
  font-size: 1rem;
  color: #FF0000;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about__member-bio {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 300px;
}

/**
 * ========================================
 * TESTIMONIALS SECTION
 * ========================================
 *
 * Client reviews and feedback
 * Slider/carousel support
 */
#testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.testimonials__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.4);
  pointer-events: none;
}
@media (max-width: 767px) {
  .testimonials__video {
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
  }
}
.testimonials__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
}
.testimonials__container,
.testimonials .section-header {
  position: relative;
  z-index: 2;
}
.testimonials__container {
  max-width: 1000px;
  margin: 0 auto;
}
.testimonials__slider {
  position: relative;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 300ms ease;
}
.testimonials__item {
  min-width: 100%;
  padding: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .testimonials__item {
    padding: 2rem;
  }
}
.testimonials__quote {
  font-size: 1.5rem;
  line-height: 1.75;
  color: #FFFFFF;
  margin-bottom: 3rem;
  position: relative;
  font-style: italic;
}
@media (max-width: 767px) {
  .testimonials__quote {
    font-size: 1.25rem;
  }
}
.testimonials__quote::before {
  content: '"';
  font-size: 5rem;
  color: #FF0000;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.testimonials__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.testimonials__author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FF0000;
}
.testimonials__author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.testimonials__author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}
.testimonials__author-title {
  font-size: 0.875rem;
  color: #999999;
}
.testimonials__rating {
  margin-top: 0.5rem;
  color: #FF0000;
  font-size: 1.25rem;
}
.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonials__arrow {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 300ms ease, border-color 300ms ease, transform 300ms ease;
}
.testimonials__arrow:hover {
  background-color: #FF0000;
  border-color: #FF0000;
  transform: scale(1.1);
}
.testimonials__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  margin: 0 auto;
}
.testimonials__arrow--prev::after {
  border-width: 8px 12px 8px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
.testimonials__arrow--next::after {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #FFFFFF;
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #333333;
  border: none;
  cursor: pointer;
  transition: background-color 300ms ease, transform 300ms ease;
}
.testimonials__dot.active, .testimonials__dot:hover {
  background-color: #FF0000;
  transform: scale(1.3);
}

/**
 * ========================================
 * CONTACT SECTION
 * ========================================
 *
 * Contact form and information
 */
.contact__container {
  max-width: 800px;
  margin: 0 auto;
}
.contact__form {
  background-color: #1a1a1a;
  padding: 4rem;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .contact__form {
    padding: 2rem;
  }
}
.contact__form-group {
  margin-bottom: 2rem;
}
.contact__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact__input, .contact__textarea, .contact__select {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #333333;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 1rem;
  transition: border-color 300ms ease, background-color 300ms ease;
}
.contact__input::placeholder, .contact__textarea::placeholder, .contact__select::placeholder {
  color: #999999;
}
.contact__input:focus, .contact__textarea:focus, .contact__select:focus {
  outline: none;
  border-color: #FF0000;
  background-color: #404040;
}
.contact__textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 4rem;
}
.contact__submit {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  background-color: #FF0000;
  color: #FFFFFF;
  width: 100%;
  font-size: 1.25rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.contact__submit:hover {
  transform: translateY(-2px);
}
.contact__submit:active {
  transform: translateY(0);
}
.contact__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact__submit:disabled:hover {
  transform: none;
}
.contact__submit:hover {
  background-color: #CC0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}
.contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #333333;
}
.contact__info-item {
  text-align: center;
}
.contact__info-icon {
  font-size: 2.5rem;
  color: #FF0000;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__info-icon svg {
  display: block;
  margin: 0 auto;
}
.contact__info-label {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact__info-value {
  font-size: 1rem;
  color: #FFFFFF;
}
.contact__info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease;
}
.contact__info-value a:hover {
  color: #FF0000;
}
.contact__info-value--with-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contact__info-value--with-whatsapp {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.contact__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 8px;
  color: #25D366 !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
}
.contact__whatsapp-btn svg {
  flex-shrink: 0;
}
.contact__whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25D366;
  color: #25D366 !important;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .contact__whatsapp-btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}
.contact__phone-link {
  white-space: nowrap;
}
.contact__error {
  display: none;
  color: #FF0000;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.contact__input.error, .contact__textarea.error, .contact__select.error {
  border-color: #FF0000;
}
.contact__input.error + .contact__error, .contact__textarea.error + .contact__error, .contact__select.error + .contact__error {
  display: block;
}
.contact__success-message {
  display: none;
  background-color: #ffcccc;
  color: #000000;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}
.contact__success-message.show {
  display: block;
}

/**
 * ========================================
 * FOOTER
 * ========================================
 *
 * Site footer with links and information
 */
.footer {
  background-color: #1a1a1a;
  color: #999999;
  padding: 6rem 0 2rem;
}
.footer__container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer__main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #333333;
}
@media (max-width: 767px) {
  .footer__main {
    gap: 3rem;
  }
}
.footer__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  margin-bottom: 1rem;
}
.footer__link a {
  color: #999999;
  text-decoration: none;
  font-size: 1rem;
  transition: color 300ms ease;
}
.footer__link a:hover {
  color: #FF0000;
}
.footer__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333333;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.25rem;
  transition: background-color 300ms ease, transform 300ms ease;
}
.footer__social-link:hover {
  background-color: #FF0000;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.875rem;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.footer__copyright {
  color: #999999;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.footer__legal a {
  color: #999999;
  text-decoration: none;
  transition: color 300ms ease;
}
.footer__legal a:hover {
  color: #FF0000;
}

/**
 * ========================================
 * IMPRESSUM MODAL
 * ========================================
 *
 * German legal notice modal
 */
.impressum-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3010;
  overflow-y: auto;
}
.impressum-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 0;
}
.impressum-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1;
}
.impressum-modal__content {
  position: relative;
  background: #1a1a1a;
  max-width: 800px;
  width: 90%;
  margin: 2rem auto;
  padding: 4rem;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .impressum-modal__content {
    width: 95%;
    padding: 2rem;
    margin: 1rem auto;
  }
}
.impressum-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 300ms ease, transform 300ms ease;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
}
.impressum-modal__close:hover {
  color: #FF0000;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .impressum-modal__close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }
}
.impressum-modal__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #FF0000;
}
@media (max-width: 767px) {
  .impressum-modal__title {
    font-size: 2rem;
  }
}
.impressum-modal__body {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}
.impressum-modal__body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.impressum-modal__body h3:first-child {
  margin-top: 0;
}
.impressum-modal__body p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.impressum-modal__body strong {
  color: #FFFFFF;
  font-weight: 600;
}
.impressum-modal__body a {
  color: #FF0000;
  text-decoration: none;
  transition: color 300ms ease;
}
.impressum-modal__body a:hover {
  color: #ff3333;
  text-decoration: underline;
}
.impressum-modal__body br {
  line-height: 2;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-desktop {
    display: none !important;
  }
}

body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #1a1a1a;
}
body::-webkit-scrollbar-thumb {
  background: #FF0000;
  border-radius: 12px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #ff3333;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-overlay .loader {
  width: 50px;
  height: 50px;
  border: 4px solid #333333;
  border-top-color: #FF0000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */
