@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

@font-face {
  font-family: "Montserrat";
  src: url("/assets/styles/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/styles/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/styles/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  color: #f5f5f5;
  background-color: #0a0a0a;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: none;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

.age-banner {
  background: linear-gradient(to right, #0a0a0a 0%, #e67e22 50%, #0a0a0a 100%);
  color: #fff;
  padding: 0.8rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  width: 100%;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.age-banner p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.age-banner p::before {
  content: "⚠️";
  font-size: 1.1rem;
}

.fr-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.98);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(230, 126, 34, 0.1);
}
.fr-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: relative;
  min-height: 70px;
}
.fr-header .fr-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}
.fr-header .fr-logo-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5f5f5;
  position: relative;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-header .fr-logo-badge {
  background: #f1c40f;
  color: #121212;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 0.5rem;
  animation: pulse 2s infinite;
}
.fr-header .fr-nav {
  display: flex;
  gap: 2rem;
}
.fr-header .fr-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: #f5f5f5;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.fr-header .fr-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transition: width 0.3s ease;
}
.fr-header .fr-nav .nav-link:hover::after, .fr-header .fr-nav .nav-link.active::after {
  width: 100%;
}
.fr-header .fr-nav .nav-link.active {
  color: #e67e22;
}
.fr-header .fr-nav .mobile-auth {
  display: none;
}
.fr-header .fr-auth {
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 1002;
}
.fr-header .fr-auth .fr-login {
  color: #f5f5f5;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 126, 34, 0.3);
}
.fr-header .fr-auth .fr-login:hover {
  background: rgba(230, 126, 34, 0.1);
  color: #e67e22;
  border-color: #e67e22;
}
.fr-header .fr-auth .fr-register {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  position: relative;
  overflow: hidden;
}
.fr-header .fr-auth .fr-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}
.fr-header .fr-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1003;
  position: relative;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.fr-header .fr-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.fr-header .fr-menu-toggle:hover {
  background: rgba(230, 126, 34, 0.1);
}
.fr-header .fr-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #e67e22;
}
.fr-header .fr-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.fr-header .fr-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #e67e22;
}
@media (max-width: 1024px) {
  .fr-header .fr-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 5% 6rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .fr-header .fr-nav.active {
    transform: translateX(0);
    display: flex;
  }
  .fr-header .fr-nav .nav-link {
    width: 100%;
    max-width: 300px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    text-align: center;
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 10px;
    font-size: 1.1rem;
  }
  .fr-header .fr-nav .mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 126, 34, 0.2);
  }
  .fr-header .fr-nav .mobile-auth .fr-login,
  .fr-header .fr-nav .mobile-auth .fr-register {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }
  .fr-header .fr-auth {
    display: none;
  }
  .fr-header .fr-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .fr-header .header-content {
    padding: 1rem;
  }
}

.fr-hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: #0a0a0a;
  color: #f5f5f5;
}
.fr-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fr-hero .hero-background .hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(230, 126, 34, 0.15) 0%, transparent 50%);
}
.fr-hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.fr-hero .hero-content {
  flex: 1;
  max-width: 600px;
}
.fr-hero .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 245, 245, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 245, 245, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #f1c40f;
}
.fr-hero .hero-content .hero-badge span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fr-hero .hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.fr-hero .hero-content h1 .hero-title-line {
  display: block;
}
.fr-hero .hero-content h1 .hero-title-highlight {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.fr-hero .hero-content h1 .hero-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(241, 196, 15, 0.3);
  z-index: -1;
  border-radius: 4px;
}
.fr-hero .hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.fr-hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.fr-hero .hero-content .hero-actions .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.fr-hero .hero-content .hero-actions .hero-btn.primary {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}
.fr-hero .hero-content .hero-actions .hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}
.fr-hero .hero-content .hero-actions .hero-btn.primary svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.fr-hero .hero-content .hero-actions .hero-btn.primary:hover svg {
  transform: translateX(5px);
}
.fr-hero .hero-content .hero-actions .hero-btn.secondary {
  background: transparent;
  border: 2px solid rgba(245, 245, 245, 0.3);
  color: #f5f5f5;
}
.fr-hero .hero-content .hero-actions .hero-btn.secondary:hover {
  border-color: #e67e22;
  color: #e67e22;
  background: rgba(230, 126, 34, 0.1);
}
.fr-hero .hero-content .hero-stats {
  display: flex;
  gap: 1rem;
}
.fr-hero .hero-content .hero-stats .stat-card {
  flex: 1;
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.fr-hero .hero-content .hero-stats .stat-card.highlight {
  background: rgba(230, 126, 34, 0.1);
  border-color: rgba(230, 126, 34, 0.3);
  transform: translateY(-10px);
}
.fr-hero .hero-content .hero-stats .stat-card .stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.fr-hero .hero-content .hero-stats .stat-card .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-hero .hero-content .hero-stats .stat-card .stat-label {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
}
.fr-hero .hero-visual {
  flex: 1;
  position: relative;
  max-width: 500px;
}
.fr-hero .hero-visual .game-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
}
.fr-hero .hero-visual .game-preview:hover {
  transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.fr-hero .hero-visual .game-preview img {
  width: 100%;
  height: auto;
  display: block;
}
.fr-hero .hero-visual .game-preview .game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f1c40f;
  color: #121212;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}
@media (max-width: 1024px) {
  .fr-hero {
    padding: 4rem 0;
  }
  .fr-hero .container {
    flex-direction: column;
    text-align: center;
  }
  .fr-hero .hero-content {
    max-width: 100%;
  }
  .fr-hero .hero-content .hero-actions {
    justify-content: center;
  }
  .fr-hero .hero-content .hero-stats {
    justify-content: center;
  }
  .fr-hero .hero-visual {
    margin-top: 3rem;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .fr-hero {
    padding: 3rem 0;
  }
  .fr-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .fr-hero .hero-content .hero-actions {
    flex-direction: column;
  }
  .fr-hero .hero-content .hero-actions .hero-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .fr-hero .hero-content .hero-stats {
    flex-direction: column;
  }
  .fr-hero .hero-content .hero-stats .stat-card.highlight {
    transform: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.fr-why-us {
  padding: 6rem 0;
  background: #121212;
  position: relative;
  overflow: hidden;
}
.fr-why-us .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-why-us .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-why-us .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-why-us .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-why-us .why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fr-why-us .why-us-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fr-why-us .why-us-visual .visual-circle {
  position: relative;
  width: 400px;
  height: 400px;
}
.fr-why-us .why-us-visual .visual-circle .circle-main {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(230, 126, 34, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.fr-why-us .why-us-visual .visual-circle .circle-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fr-why-us .why-us-visual .visual-circle .circle-item {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(230, 126, 34, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.fr-why-us .why-us-visual .visual-circle .circle-item .item-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-why-us .why-us-visual .visual-circle .circle-item .item-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f5f5f5;
  text-align: center;
}
.fr-why-us .why-us-visual .visual-circle .circle-item:hover {
  background: rgba(230, 126, 34, 0.1);
  transform: scale(1.1);
}
.fr-why-us .why-us-visual .visual-circle .circle-item.top-left {
  top: 0;
  left: 0;
  animation: float 4s ease-in-out infinite;
}
.fr-why-us .why-us-visual .visual-circle .circle-item.top-right {
  top: 0;
  right: 0;
  animation: float 4s ease-in-out infinite 0.5s;
}
.fr-why-us .why-us-visual .visual-circle .circle-item.bottom-left {
  bottom: 0;
  left: 0;
  animation: float 4s ease-in-out infinite 1s;
}
.fr-why-us .why-us-visual .visual-circle .circle-item.bottom-right {
  bottom: 0;
  right: 0;
  animation: float 4s ease-in-out infinite 1.5s;
}
.fr-why-us .why-us-features .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.fr-why-us .why-us-features .feature-item:last-child {
  margin-bottom: 0;
}
.fr-why-us .why-us-features .feature-item .feature-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
}
.fr-why-us .why-us-features .feature-item .feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #f5f5f5;
}
.fr-why-us .why-us-features .feature-item .feature-text p {
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .fr-why-us .why-us-visual .visual-circle {
    width: 350px;
    height: 350px;
  }
  .fr-why-us .why-us-visual .visual-circle .circle-main {
    width: 200px;
    height: 200px;
  }
  .fr-why-us .why-us-visual .visual-circle .circle-item {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1024px) {
  .fr-why-us .why-us-content {
    grid-template-columns: 1fr;
  }
  .fr-why-us .why-us-visual {
    height: 400px;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .fr-why-us {
    padding: 4rem 0;
  }
  .fr-why-us .section-header h2 {
    font-size: 2rem;
  }
  .fr-why-us .why-us-visual .visual-circle {
    width: 300px;
    height: 300px;
  }
  .fr-why-us .why-us-visual .visual-circle .circle-main {
    width: 180px;
    height: 180px;
  }
  .fr-why-us .why-us-visual .visual-circle .circle-item {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }
}

.fr-showcase {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.fr-showcase .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-showcase .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-showcase .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-showcase .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-showcase .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.fr-showcase .game-card {
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.fr-showcase .game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(230, 126, 34, 0.3);
}
.fr-showcase .game-card:hover .game-image img {
  transform: scale(1.05);
}
.fr-showcase .game-card:hover .game-overlay {
  opacity: 1;
}
.fr-showcase .game-card .game-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.fr-showcase .game-card .game-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.fr-showcase .game-card .game-image .game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap: 1rem;
}
.fr-showcase .game-card .game-image .game-badge {
  background: #f1c40f;
  color: #121212;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}
.fr-showcase .game-card .game-image .game-badge.new {
  background: #2ecc71;
  color: white;
}
.fr-showcase .game-card .game-image .game-badge.hot {
  background: #e74c3c;
  color: white;
}
.fr-showcase .game-card .game-image .game-preview-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(230, 126, 34, 0.2);
  border: 1px solid rgba(230, 126, 34, 0.5);
  color: #f5f5f5;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.fr-showcase .game-card .game-image .game-preview-btn:hover {
  background: rgba(230, 126, 34, 0.4);
  transform: translateY(-2px);
}
.fr-showcase .game-card .game-info {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.fr-showcase .game-card .game-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #f5f5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fr-showcase .game-card .game-info .game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}
.fr-showcase .game-card .game-info .game-meta .game-volatility {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 600;
}
.fr-showcase .game-card .game-info .game-meta .game-volatility.low {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.fr-showcase .game-card .game-info .game-meta .game-volatility.medium {
  background: rgba(243, 156, 18, 0.1);
  color: #f39c12;
  border: 1px solid rgba(243, 156, 18, 0.3);
}
.fr-showcase .game-card .game-info .game-meta .game-volatility.high {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}
.fr-showcase .game-card .game-info .game-meta .game-rating {
  color: #f1c40f;
  letter-spacing: 2px;
}
.fr-showcase .game-card .game-info .play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.fr-showcase .game-card .game-info .play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.5);
}
.fr-showcase .game-card .game-info .play-btn:hover svg {
  transform: translateX(5px);
}
.fr-showcase .game-card .game-info .play-btn svg {
  transition: transform 0.3s ease;
}
.fr-showcase .showcase-cta {
  text-align: center;
  margin-top: 2rem;
}
.fr-showcase .showcase-cta .cta-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  background: transparent;
  border: 2px solid #e67e22;
  color: #e67e22;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.fr-showcase .showcase-cta .cta-btn:hover {
  background: rgba(230, 126, 34, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}
@media (max-width: 1200px) {
  .fr-showcase .showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 768px) {
  .fr-showcase {
    padding: 4rem 0;
  }
  .fr-showcase .section-header h2 {
    font-size: 2rem;
  }
  .fr-showcase .game-card .game-image {
    height: 150px;
  }
  .fr-showcase .game-card .game-info {
    padding: 1.2rem;
  }
  .fr-showcase .game-card .game-info h3 {
    font-size: 1.2rem;
  }
}

.fr-community {
  padding: 6rem 0;
  background: #121212;
  position: relative;
  overflow: hidden;
}
.fr-community .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-community .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-community .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-community .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-community .community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fr-community .community-visual {
  position: relative;
  height: 400px;
}
.fr-community .community-visual .community-bubbles {
  position: relative;
  width: 100%;
  height: 100%;
}
.fr-community .community-visual .community-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.1);
  border: 2px solid rgba(230, 126, 34, 0.3);
  background-size: cover;
  background-position: center;
  animation: float 6s ease-in-out infinite;
}
.fr-community .community-visual .community-bubbles .bubble.large {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  animation-delay: 0s;
}
@media (max-width: 460px) {
  .fr-community .community-visual .community-bubbles .bubble.large {
    top: 50px;
    left: 30px;
  }
}
.fr-community .community-visual .community-bubbles .bubble.medium {
  width: 150px;
  height: 150px;
  top: 200px;
  left: 200px;
  animation-delay: 1s;
}
@media (max-width: 460px) {
  .fr-community .community-visual .community-bubbles .bubble.medium {
    top: 180px;
    left: 140px;
  }
}
.fr-community .community-visual .community-bubbles .bubble.small {
  width: 100px;
  height: 100px;
  top: 50px;
  left: 250px;
  animation-delay: 2s;
}
@media (max-width: 460px) {
  .fr-community .community-visual .community-bubbles .bubble.small {
    top: 50px;
    left: 190px;
  }
}
.fr-community .community-features .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.fr-community .community-features .feature-item .feature-number {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
}
.fr-community .community-features .feature-item .feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #f5f5f5;
}
.fr-community .community-features .feature-item .feature-text p {
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .fr-community .community-content {
    grid-template-columns: 1fr;
  }
  .fr-community .community-visual {
    height: 300px;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .fr-community {
    padding: 4rem 0;
  }
  .fr-community .section-header h2 {
    font-size: 2rem;
  }
}

.fr-rewards {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, #121212 100%);
}
.fr-rewards .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-rewards .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-rewards .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-rewards .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-rewards .rewards-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.fr-rewards .rewards-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(245, 245, 245, 0.1);
  z-index: 1;
}
.fr-rewards .rewards-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transform: scaleX(0);
  transform-origin: left;
  animation: trackProgress 2s ease forwards;
  z-index: 2;
}
.fr-rewards .reward-day {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 80px;
  transition: all 0.3s ease;
}
.fr-rewards .reward-day:hover {
  transform: translateY(-10px);
}
.fr-rewards .reward-day .day-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}
.fr-rewards .reward-day .reward-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-rewards .reward-day .reward-amount {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(245, 245, 245, 0.8);
}
.fr-rewards .reward-day.highlight .reward-icon {
  font-size: 2.5rem;
}
.fr-rewards .reward-day.highlight .reward-amount {
  color: #f1c40f;
  font-weight: 700;
}
@media (max-width: 768px) {
  .fr-rewards {
    padding: 4rem 0;
  }
  .fr-rewards .section-header h2 {
    font-size: 2rem;
  }
  .fr-rewards .rewards-track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0;
  }
  .fr-rewards .rewards-track::before, .fr-rewards .rewards-track::after {
    display: none;
  }
  .fr-rewards .reward-day {
    width: 100px;
  }
}

.fr-achievements {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, #121212 100%);
  position: relative;
  overflow: hidden;
}
.fr-achievements .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-achievements .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-achievements .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-achievements .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-achievements .achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fr-achievements .achievement-card {
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}
.fr-achievements .achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(230, 126, 34, 0.3);
}
.fr-achievements .achievement-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.1;
}
.fr-achievements .achievement-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #e67e22 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}
.fr-achievements .achievement-card .achievement-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-achievements .achievement-card .achievement-content {
  position: relative;
  z-index: 1;
}
.fr-achievements .achievement-card .achievement-content .achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.fr-achievements .achievement-card .achievement-content h3 {
  font-size: 1.4rem;
  color: #f5f5f5;
  margin-bottom: 0.8rem;
}
.fr-achievements .achievement-card .achievement-content p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .fr-achievements {
    padding: 4rem 0;
  }
  .fr-achievements .section-header h2 {
    font-size: 2rem;
  }
  .fr-achievements .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .fr-achievements .achievements-grid {
    grid-template-columns: 1fr;
  }
}

.fr-mission {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.fr-mission .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-mission .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-mission .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-mission .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-mission .mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fr-mission .mission-text .mission-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.fr-mission .mission-text .mission-item:hover {
  border-color: rgba(230, 126, 34, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.fr-mission .mission-text .mission-item .mission-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fr-mission .mission-text .mission-item .mission-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #f5f5f5;
}
.fr-mission .mission-text .mission-item .mission-details p {
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
}
.fr-mission .mission-visual {
  position: relative;
  height: 100%;
}
.fr-mission .mission-visual .mission-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(10deg);
  transition: all 0.5s ease;
}
.fr-mission .mission-visual .mission-image-wrapper:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.fr-mission .mission-visual .mission-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.fr-mission .mission-visual .mission-image-wrapper .mission-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: gradientPulse 4s ease infinite;
}
@media (max-width: 1024px) {
  .fr-mission .mission-content {
    grid-template-columns: 1fr;
  }
  .fr-mission .mission-visual {
    margin-top: 3rem;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .fr-mission {
    padding: 4rem 0;
  }
  .fr-mission .section-header h2 {
    font-size: 2rem;
  }
  .fr-mission .mission-item {
    flex-direction: column;
    text-align: center;
  }
  .fr-mission .mission-item .mission-icon {
    margin-bottom: 1rem;
  }
}

.fr-disclaimer {
  padding: 4rem 0;
  background: rgba(230, 126, 34, 0.05);
  border-top: 1px solid rgba(230, 126, 34, 0.1);
  border-bottom: 1px solid rgba(230, 126, 34, 0.1);
}
.fr-disclaimer .disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.fr-disclaimer .disclaimer-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.fr-disclaimer .disclaimer-content h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-disclaimer .disclaimer-content .disclaimer-text p {
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.fr-disclaimer .disclaimer-content .disclaimer-text p:last-child {
  margin-bottom: 0;
}
.fr-disclaimer .disclaimer-content .disclaimer-text p strong {
  color: #f5f5f5;
  font-weight: 600;
}
@media (max-width: 768px) {
  .fr-disclaimer {
    padding: 3rem 0;
  }
  .fr-disclaimer .disclaimer-content h2 {
    font-size: 1.8rem;
  }
}

.casino-footer {
  background: #121212;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(230, 126, 34, 0.1);
}
.casino-footer .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}
.casino-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-bottom: 3rem;
}
.casino-footer .footer-links a {
  color: rgba(245, 245, 245, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}
.casino-footer .footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transition: width 0.3s ease;
}
.casino-footer .footer-links a:hover {
  color: #f5f5f5;
}
.casino-footer .footer-links a:hover::after {
  width: 100%;
}
.casino-footer .disclaimer-box {
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 0 auto 3rem;
  max-width: 900px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.casino-footer .disclaimer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
  z-index: -1;
}
.casino-footer .disclaimer-box .disclaimer-text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}
.casino-footer .disclaimer-box .age-badge {
  background: #e67e22;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}
.casino-footer .footer-logo-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.casino-footer .footer-logo-copyright .footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.casino-footer .footer-logo-copyright .footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
.casino-footer .footer-logo-copyright .copyright {
  color: rgba(245, 245, 245, 0.6);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .casino-footer {
    padding: 3rem 0 2rem;
  }
  .casino-footer .footer-links {
    gap: 1rem 2rem;
    margin-bottom: 2rem;
  }
  .casino-footer .disclaimer-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }
  .casino-footer .disclaimer-box .age-badge {
    margin-top: 0.5rem;
  }
}

.age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}
.age-verification-popup .age-verification-content {
  background: #121212;
  border-radius: 15px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(230, 126, 34, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.age-verification-popup .age-verification-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.age-verification-popup .age-verification-content p {
  color: rgba(245, 245, 245, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.age-verification-popup .age-verification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.age-verification-popup .age-verification-buttons button {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.age-verification-popup .age-verification-buttons .age-confirm-btn {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
}
.age-verification-popup .age-verification-buttons .age-confirm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}
.age-verification-popup .age-verification-buttons .age-deny-btn {
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.3);
  color: rgba(245, 245, 245, 0.8);
}
.age-verification-popup .age-verification-buttons .age-deny-btn:hover {
  border-color: rgba(245, 245, 245, 0.6);
  color: #f5f5f5;
}
@media (max-width: 768px) {
  .age-verification-popup .age-verification-content {
    padding: 2rem;
  }
  .age-verification-popup .age-verification-buttons {
    flex-direction: column;
  }
  .age-verification-popup .age-verification-buttons button {
    width: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes gradientPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes trackProgress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.fr-contact {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.fr-contact .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-contact .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-contact .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-contact .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-contact .contact-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 15px;
  padding: 3rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.fr-contact .fr-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.fr-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .fr-contact .form-row {
    grid-template-columns: 1fr;
  }
}
.fr-contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fr-contact .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #f5f5f5;
}
.fr-contact .form-group input,
.fr-contact .form-group textarea {
  padding: 1rem 1.5rem;
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 10px;
  color: #f5f5f5;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.fr-contact .form-group input:focus,
.fr-contact .form-group textarea:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}
.fr-contact .form-group textarea {
  resize: vertical;
  min-height: 180px;
}
.fr-contact .fr-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  align-self: flex-end;
}
.fr-contact .fr-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}
.fr-contact .fr-submit-btn:hover svg {
  transform: translateX(5px);
}
.fr-contact .fr-submit-btn svg {
  transition: transform 0.3s ease;
}
.fr-contact .contact-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(46, 204, 113, 0.1);
  border-left: 4px solid #2ecc71;
  border-radius: 10px;
  margin-bottom: 2rem;
  animation: fadeIn 0.5s ease;
}
.fr-contact .contact-success .success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(46, 204, 113, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}
.fr-contact .contact-success p {
  color: #f5f5f5;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .fr-contact {
    padding: 4rem 0;
  }
  .fr-contact .contact-content {
    padding: 2rem;
  }
}

.fr-login-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.fr-login-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-login-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-login-section .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-login-section .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-login-section .login-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.fr-login-section .fr-login-form {
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 15px;
  padding: 3rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.fr-login-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fr-login-section .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #f5f5f5;
}
.fr-login-section .form-group input {
  padding: 1rem 1.5rem;
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 10px;
  color: #f5f5f5;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.fr-login-section .form-group input:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}
.fr-login-section .form-group input::-moz-placeholder {
  color: rgba(245, 245, 245, 0.5);
}
.fr-login-section .form-group input::placeholder {
  color: rgba(245, 245, 245, 0.5);
}
.fr-login-section .forgot-password {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  text-align: right;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}
.fr-login-section .forgot-password:hover {
  color: #e67e22;
}
.fr-login-section .fr-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.fr-login-section .fr-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}
.fr-login-section .fr-submit-btn:hover svg {
  transform: translateX(5px);
}
.fr-login-section .fr-submit-btn svg {
  transition: transform 0.3s ease;
}
.fr-login-section .form-footer {
  text-align: center;
  margin-top: 1rem;
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
}
.fr-login-section .form-footer a {
  color: #e67e22;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}
.fr-login-section .form-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transition: width 0.3s ease;
}
.fr-login-section .form-footer a:hover {
  color: #eb9950;
}
.fr-login-section .form-footer a:hover::after {
  width: 100%;
}
.fr-login-section .login-visual {
  position: relative;
  height: 100%;
}
.fr-login-section .login-visual .visual-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(10deg);
  transition: all 0.5s ease;
}
.fr-login-section .login-visual .visual-wrapper:hover {
  transform: perspective(1000px) rotateY(5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.fr-login-section .login-visual .visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.fr-login-section .login-visual .visual-wrapper .visual-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: gradientPulse 4s ease infinite;
}
@media (max-width: 1024px) {
  .fr-login-section .login-content {
    grid-template-columns: 1fr;
  }
  .fr-login-section .login-visual {
    display: none;
  }
}
@media (max-width: 768px) {
  .fr-login-section {
    padding: 4rem 0;
  }
  .fr-login-section .section-header h2 {
    font-size: 2rem;
  }
  .fr-login-section .fr-login-form {
    padding: 2rem;
  }
}

.fr-register-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.fr-register-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.fr-register-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.fr-register-section .section-header h2 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fr-register-section .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-register-section .register-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.fr-register-section .fr-register-form {
  background: rgba(245, 245, 245, 0.03);
  border: 1px solid rgba(230, 126, 34, 0.2);
  border-radius: 15px;
  padding: 3rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fr-register-section .form-row {
  margin-bottom: 1rem;
}
.fr-register-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.fr-register-section .form-group label {
  font-size: 1rem;
  font-weight: 500;
  color: #f5f5f5;
}
.fr-register-section .form-group input {
  padding: 1rem 1.5rem;
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 10px;
  color: #f5f5f5;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.fr-register-section .form-group input:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}
.fr-register-section .form-group input::-moz-placeholder {
  color: rgba(245, 245, 245, 0.5);
}
.fr-register-section .form-group input::placeholder {
  color: rgba(245, 245, 245, 0.5);
}
.fr-register-section .password-strength {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.fr-register-section .password-strength .strength-meter {
  display: flex;
  gap: 0.3rem;
  flex-grow: 1;
}
.fr-register-section .password-strength .strength-meter .strength-bar {
  height: 4px;
  width: 100%;
  background: rgba(117, 117, 117, 0.3);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.fr-register-section .password-strength .strength-text {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.7);
  min-width: 100px;
  text-align: right;
}
.fr-register-section .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}
.fr-register-section .checkbox-group input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(230, 126, 34, 0.5);
  border-radius: 5px;
  background: rgba(18, 18, 18, 0.7);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.fr-register-section .checkbox-group input[type=checkbox]:checked {
  background: #e67e22;
  border-color: #e67e22;
}
.fr-register-section .checkbox-group input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.9rem;
}
.fr-register-section .checkbox-group label {
  font-size: 0.9rem;
  color: #f5f5f5;
  line-height: 1.4;
}
.fr-register-section .checkbox-group label a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.fr-register-section .checkbox-group label a:hover {
  color: #eb9950;
}
.fr-register-section .fr-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}
.fr-register-section .fr-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}
.fr-register-section .fr-submit-btn:hover svg {
  transform: translateX(5px);
}
.fr-register-section .fr-submit-btn svg {
  transition: transform 0.3s ease;
}
.fr-register-section .form-footer {
  text-align: center;
  margin-top: 1.5rem;
}
.fr-register-section .form-footer .disclaimer {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.fr-register-section .form-footer .login-link {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.95rem;
}
.fr-register-section .form-footer .login-link a {
  color: #e67e22;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}
.fr-register-section .form-footer .login-link a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transition: width 0.3s ease;
}
.fr-register-section .form-footer .login-link a:hover {
  color: #eb9950;
}
.fr-register-section .form-footer .login-link a:hover::after {
  width: 100%;
}
.fr-register-section .register-visual {
  position: relative;
  height: 100%;
}
.fr-register-section .register-visual .visual-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
}
.fr-register-section .register-visual .visual-wrapper:hover {
  transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.fr-register-section .register-visual .visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.fr-register-section .register-visual .visual-wrapper .visual-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(230, 126, 34, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: gradientPulse 4s ease infinite;
}
.fr-register-section input[type=password]:focus ~ .password-strength .strength-bar:nth-child(1) {
  background: #ef4444;
}
.fr-register-section input[type=password]:focus ~ .password-strength .strength-bar:nth-child(2) {
  background: #f59e0b;
}
.fr-register-section input[type=password]:focus ~ .password-strength .strength-bar:nth-child(3) {
  background: #10b981;
}
@media (max-width: 1024px) {
  .fr-register-section .register-content {
    grid-template-columns: 1fr;
  }
  .fr-register-section .register-visual {
    display: none;
  }
}
@media (max-width: 768px) {
  .fr-register-section {
    padding: 4rem 0;
  }
  .fr-register-section .section-header h2 {
    font-size: 2rem;
  }
  .fr-register-section .fr-register-form {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .fr-register-section .checkbox-group {
    align-items: flex-start;
  }
  .fr-register-section .checkbox-group label {
    font-size: 0.85rem;
  }
}

.fr-legal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #121212 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.fr-legal-document {
  background: rgba(245, 245, 245, 0.03);
  border-radius: 15px;
  padding: 4rem;
  border: 1px solid rgba(230, 126, 34, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.fr-legal-document::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}
.fr-legal-document h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1.5rem;
}
.fr-legal-document h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  border-radius: 2px;
}
.fr-legal-document h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  color: #f5f5f5;
  position: relative;
  padding-left: 2rem;
}
.fr-legal-document h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #e67e22;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(230, 126, 34, 0.5);
}
.fr-legal-document h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  margin: 2.5rem 0 1.2rem;
  color: #f5f5f5;
}
.fr-legal-document p {
  margin-bottom: 1.5rem;
  color: rgba(245, 245, 245, 0.8);
}
.fr-legal-document strong {
  color: #f5f5f5;
  font-weight: 600;
}
.fr-legal-document a {
  color: #e67e22;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.fr-legal-document a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  transition: width 0.3s ease;
}
.fr-legal-document a:hover {
  color: #eb9950;
}
.fr-legal-document a:hover::after {
  width: 100%;
}
.fr-legal-document ul,
.fr-legal-document ol {
  margin: 2rem 0;
  padding-left: 2.5rem;
}
.fr-legal-document ul li,
.fr-legal-document ol li {
  margin-bottom: 1rem;
  color: rgba(245, 245, 245, 0.8);
  position: relative;
}
.fr-legal-document ul li::before,
.fr-legal-document ol li::before {
  content: "•";
  color: #e67e22;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.fr-legal-document .last-updated {
  text-align: right;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.6);
  margin-top: 4rem;
  font-style: italic;
}

@media (max-width: 1024px) {
  .fr-legal-document {
    padding: 3rem;
  }
  .fr-legal-document h1 {
    font-size: 2.2rem;
  }
  .fr-legal-document h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .fr-legal-container {
    padding: 4rem 5%;
  }
  .fr-legal-document {
    padding: 2.5rem;
    border-radius: 12px;
  }
  .fr-legal-document h1 {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
  .fr-legal-document h1::after {
    width: 120px;
  }
  .fr-legal-document h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1.2rem;
    padding-left: 1.5rem;
  }
  .fr-legal-document h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .fr-legal-document {
    padding: 2rem;
  }
  .fr-legal-document h1 {
    font-size: 1.8rem;
  }
  .fr-legal-document h2 {
    font-size: 1.3rem;
    padding-left: 1.2rem;
  }
  .fr-legal-document h2::before {
    width: 8px;
    height: 8px;
  }
  .fr-legal-document ul,
  .fr-legal-document ol {
    padding-left: 1.8rem;
  }
}
.fr-game-iframe {
  padding: 6rem 5%;
  background: linear-gradient(to bottom, #0a0a0a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.fr-game-iframe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(230, 126, 34, 0.15) 0%, transparent 50%);
  z-index: 0;
}
.fr-game-iframe .container {
  position: relative;
  z-index: 2;
}
.fr-game-iframe .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.fr-game-iframe .section-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Montserrat", sans-serif;
  color: #f5f5f5;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.fr-game-iframe .section-header h1 span {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.fr-game-iframe .section-header h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(241, 196, 15, 0.3);
  z-index: -1;
  border-radius: 4px;
}
.fr-game-iframe .section-header p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.fr-game-iframe .iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 126, 34, 0.3);
  background: rgba(18, 18, 18, 0.9);
  transition: all 0.3s ease;
}
.fr-game-iframe .iframe-wrapper:hover {
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.2);
  transform: translateY(-5px);
}
.fr-game-iframe .iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #121212;
}
.fr-game-iframe .game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.fr-game-iframe .game-controls .control-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(230, 126, 34, 0.3);
  color: #f5f5f5;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}
.fr-game-iframe .game-controls .control-btn:hover {
  background: rgba(230, 126, 34, 0.2);
  color: #e67e22;
}
.fr-game-iframe .game-controls .control-btn.fullscreen-btn {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
}
@media (max-width: 1024px) {
  .fr-game-iframe {
    padding: 5rem 5%;
  }
}
@media (max-width: 768px) {
  .fr-game-iframe {
    padding: 4rem 5%;
  }
  .fr-game-iframe .iframe-wrapper {
    border-radius: 10px;
  }
  .fr-game-iframe .game-controls {
    flex-direction: column;
    align-items: center;
  }
  .fr-game-iframe .game-controls .control-btn {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .fr-game-iframe {
    padding: 3rem 5%;
  }
}/*# sourceMappingURL=main.css.map */