@import url("css2.css");
@import url("css2-1.css");

:root {
  /* Wild West тематическая палитра */
  --primary-bg: #F8F9FA;
  --secondary-bg: #FFFFFF;
  --text-primary: #ffffff;
  --text-secondary: #5A6C7D;
  --accent: #E74C3C;
  --accent-hover: #C0392B;
  --button-primary: #D4AF37;
  --button-hover: #B8941F;
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(255, 255, 255, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-strong: rgba(0, 0, 0, 0.2);
  
  /* Wild West цвета */
  --gold: #D4AF37;
  --gold-light: #F4E4BC;
  --gold-dark: #B8941F;
  --bronze: #CD7F32;
  --rust: #B7410E;
  --dust: #F4E4BC;
  --leather: #8B4513;
  --sheriff: #FFD700;
  --outlaw: #8B0000;
  
  /* Глассморфизм эффекты */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(10px);
  --glass-blur-strong: blur(20px);
}

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

p {
  margin: 0;
}
a,
button,
input,
textarea {
  outline: 0;
  transition: all 0.5s ease;
}
a {
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Russo One", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

.bg {
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(183, 65, 14, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #f8f9fa 0%, #f4e4bc 25%, #fff8dc 50%, #f0e68c 75%, #f8f9fa 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
}

.bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 90% 80%, rgba(205, 127, 50, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 1px, transparent 1px),
    linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.02) 49%, rgba(212, 175, 55, 0.02) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(205, 127, 50, 0.02) 49%, rgba(205, 127, 50, 0.02) 51%, transparent 52%);
  background-size: 50px 50px, 80px 80px, 120px 120px, 30px 30px, 30px 30px;
  pointer-events: none;
  z-index: 0;
}
header,
.banner,
.section,
.h2,
.para,
.flexbox,
footer {
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  font-size: 30px;
  font-weight: 800;
  background-color: #000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
nav {
  position: absolute !important;
  top: 0 !important;
  width: 100%;
  float: left;
  left: 0;
  z-index: +5;
}

.navbar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur-strong);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--shadow-light);
}

.navbar-toggler {
  border: none !important;
}
.navbar .container {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.nav-container {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  display: flex;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}
.nav-link:hover {
  color: var(--accent);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
}

.navbar-nav {
  justify-content: end;
  width: 100%;
}

.nav-item {
  margin: 1px 14px;
}
.navbar-brand {
  color: var(--text-primary);
  font-family: "Russo One";
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 4px var(--shadow-light);
}
.container {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
}

.banner {
  background: 
    linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.05) 50%, rgba(255, 215, 0, 0.1) 100%),
    linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%),
    url("../images/banner.jpg") center;
  background-size: cover, cover, cover;
  padding: 60px 0;
  position: relative;
  margin-top: 60px;
  backdrop-filter: var(--glass-blur);
  border-radius: 0 0 24px 24px;
  box-shadow: 
    0 8px 32px var(--shadow-light),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(212, 175, 55, 0.1);
  border: 1px solid var(--glass-border);
  border-top: 3px solid var(--gold);
}
.banner .container {
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}
.inner-banner .container {
  min-height: 250px;
}
.banner h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: 1px;
  background: linear-gradient(45deg, var(--gold) 0%, var(--sheriff) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}
.banner p {
  font-size: 18px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
  position: relative;
  margin: 20px 0;
}
.section .container {
  position: relative;
  z-index: 2;
}
.h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.para {
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 24px;
  color: var(--text-secondary);
}
.para:last-child {
  margin: 0;
}
.flexbox {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.flexbox:last-child {
  margin: 0;
}
.flexbox > p,
.flexbody {
  flex: 1;
}
.flexbox > p:first-child,
.flexbody:first-child {
  padding: 0 30px 0 0;
}
.flexbox > p:last-child,
.flexbody:last-child {
  padding: 0 0 0 30px;
}
.flexbox > img {
  width: 100%;
  max-width: 50%;
  max-height: 800px;
  object-fit: cover;
}
.color {
  color: var(--accent);
}
.circle-img {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--bronze) 100%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 20px;
  margin: 0 0 24px;
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 
    0 8px 32px var(--shadow-medium),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(212, 175, 55, 0.2);
  border: 3px solid var(--gold-light);
  transition: all 0.3s ease;
  position: relative;
}
.circle-img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 12px 40px var(--shadow-strong),
    0 0 30px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--sheriff) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}
.circle-img img {
  width: 60px !important;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
  transition: all 0.3s ease;
}

.circle-img:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(0deg) brightness(100%) contrast(100%);
  transform: scale(1.1);
}
.section1 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../images/game-img-3.jpg") center;
  background-size: cover;
  background-attachment: fixed;
}
.ul {
  text-align: left;
  font-size: 14px;
}
.image {
  width: 40%;
}
.image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--shadow-medium);
  transition: all 0.3s ease;
}
.image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px var(--shadow-strong);
}
.content {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 32px;
  float: left;
  border-radius: 24px;
  margin: 0 0 32px;
  box-shadow: 0 8px 32px var(--shadow-light);
  color: var(--text-primary);
}
.center {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin: 0 0 20px;
}
.center img {
  width: 50%;
  margin: 0 0 10px;
}
.container > img {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}
.flexgroup {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexgroupbox {
  width: 33%;
  padding: 32px 24px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  margin: 0 0 24px;
  color: var(--text-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.flexgroupbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--bronze) 50%, var(--rust) 100%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.flexgroupbox:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px var(--shadow-medium),
    0 0 20px rgba(212, 175, 55, 0.2);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%);
}
.flexgroupbox h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-primary);
}
.btn-cu {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--bronze) 100%);
  color: #2C3E50;
  border-radius: 50px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid var(--gold-light);
  box-shadow: 
    0 8px 32px var(--shadow-medium),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    0 0 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.btn-cu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-cu:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 40px var(--shadow-strong),
    0 0 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--sheriff) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border-color: var(--sheriff);
}
.btn-cu:hover::before {
  left: 100%;
}
.right {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 40px !important;
  margin-left: -40px;
  z-index: 1;
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--shadow-light);
  color: var(--text-primary);
}
.img-size {
  width: 35%;
}
.img-size img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
.formsection {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-top: 50px;
}
.formsection .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.formsection .para {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.formbox {
  width: 100%;
  float: left;
  max-width: 800px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.formfield {
  width: 100%;
  height: 50px;
  margin: 0 0 10px;
  padding: 0 10px;
  border: none;
  background: #f3f3f3;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}
.textarea-cu {
  width: 100%;
  height: 100px;
  margin: 0 0 10px;
  padding: 10px;
  border: none;
  background: #f3f3f3;
  border: solid 1px #333;
  color: #000;
  font-size: 15px;
}
.formfield::placeholder,
.textarea-cu::placeholder {
  color: #333;
}
.formbutton {
  width: 100%;
  float: left;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  background: #f82d2d;
  color: #fff;
  cursor: pointer;
  outline: 0 !important;
}

footer {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  text-align: center;
  padding: 60px 0;
  color: var(--text-primary);
  box-shadow: 0 -8px 32px var(--shadow-light);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.left-f {
  text-align: left;
  border-bottom: 1px solid #d76d21;
  padding: 20px;
  margin: 0 0 20px;
}
.footerlinks {
  flex: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  margin: 0 20px;
}
.ssl-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px;
}
.ssl-img img {
  width: 90px;
}

.footerlinks a {
  font-size: 16px;
  color: var(--text-primary);
  margin: 0 12px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.footerlinks a:hover {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  color: var(--accent);
  text-decoration: none !important;
}
.copyrights {
  font-size: 16px;
  color: var(--text-secondary);
}
.text-white {
  font-size: 14px;
}
.cookiesection {
  width: 100%;
  float: left;
  min-height: calc(100vh - 126px);
  padding: 40px 0;
}
.cookiesection h2 {
  font-size: 22px;
  font-weight: 600;
}
.cookiesection p {
  font-size: 14px;
  line-height: 20px;
}
.cookiesection p strong {
  font-weight: 600;
}
.cookiesection p .bolder {
  display: block;
  margin: 30px 0 10px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.backbutton {
  float: left;
  display: inline-flex;
  align-items: center;
  margin: 30px 0 20px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark) !important;
  border: solid 1px var(--blue-dark);
}
.backbutton img {
  width: 15px;
  margin: 0 5px 0 0;
  transition: all 0.3s ease;
}
.backbutton:hover {
  background: var(--blue-dark);
  color: #fff !important;
}
.backbutton:hover img {
  filter: saturate(0) brightness(10);
}
.alert {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #ffffff !important;
  position: fixed !important;
  bottom: 0px;
  margin-bottom: 0 !important;
  left: 0;
  right: 0;
  border-radius: 0;
  text-align: center;
  width: 100%;
  margin: auto;
  padding: 7px 30px !important;
  display: flex;
  justify-content: space-between;
  border-radius: 0px !important;
  flex-wrap: wrap;
  align-items: center;
}
.alert-dismissible {
  z-index: +3;
}
.alert-close {
  border: 1px solid transparent;
  border-radius: 4px;
  background: #862041;
  color: white;
  padding: 0px !important;
  width: 3rem;
  height: 2rem;
  font-size: 14px;
}
.hide {
  display: none;
}
span {
  font-weight: bold;
}

.alert p {
  font-size: 14px;
}

.hide {
  display: none;
}

/* Дополнительные глассморфизм эффекты */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px var(--shadow-light);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-medium);
  background: rgba(255, 255, 255, 0.15);
}

/* Улучшенные тени для текста */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Плавные переходы для всех элементов */
* {
  transition: all 0.3s ease;
}

/* Улучшенные hover эффекты */
.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-glow:hover {
  box-shadow: 0 8px 32px var(--shadow-medium);
}
.alert-close {
  padding: 0px 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #862041;
  color: white;
  margin: 0 !important;
  font-size: 14px;
}
@media (max-width: 800px) {
  .banner h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 28px;
  }
  .para {
    font-size: 16px;
  }
  .flexbox {
    flex-direction: column;
  }
  .flexbox > img {
    max-width: 100%;
    order: 1;
    margin: 0 0 15px;
  }
  .flexbody,
  .flexbox > .para {
    padding: 0 !important;
    order: 2;
  }
  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .flexgroupbox {
    width: 100%;
    padding: 24px 20px;
  }
  .formfield {
    width: 100%;
  }
  .formbutton {
    width: 100%;
  }
  .img-size {
    width: 100%;
  }
  .footerlinks {
    justify-content: center;
    margin: 10px 0;
  }
  .nav-icon img {
    width: 30px;
  }
  .section1 {
    margin-top: 0;
  }
  .center img {
    width: 100%;
  }
  .flexbody {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .ssl-img {
    flex-direction: column;
  }
  .ssl-img img {
    width: 120px;
    margin: 0 !important;
  }
  .image {
    width: 100%;
    margin: 0 0 20px;
  }
  .right {
    margin-left: 0;
    padding: 24px !important;
  }
}

/* ===========================================
   НОВЫЕ АНИМИРОВАННЫЕ СТИЛИ
   =========================================== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(183, 65, 14, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #1a1a2e 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #D4AF37, transparent),
    radial-gradient(2px 2px at 40px 70px, #CD7F32, transparent),
    radial-gradient(1px 1px at 90px 40px, #FFD700, transparent),
    radial-gradient(1px 1px at 130px 80px, #B7410E, transparent),
    radial-gradient(2px 2px at 160px 30px, #D4AF37, transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particleFloat 20s linear infinite;
  opacity: 0.6;

}

@keyframes particleFloat {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-100px) translateX(50px); }
  66% { transform: translateY(-200px) translateX(-50px); }
  100% { transform: translateY(-300px) translateX(0px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 120px;
}

.hero-text {
  text-align: center;
  margin-bottom: 60px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  margin-bottom: 30px;
  position: relative;
}

.title-line {
  display: block;
  background: linear-gradient(45deg, #D4AF37, #FFD700, #CD7F32, #B7410E);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.title-subtitle {
  display: block;
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 300;
  color: #FFD700;
  margin-top: 20px;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: clamp(16px, 2.5vw, 24px);
  max-width: 800px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-primary, .btn-secondary {
  padding: 18px 36px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #FFD700, #CD7F32);
  color: #1a1a2e;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.pulse-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(212, 175, 55, 0.8), 0 0 0 20px rgba(212, 175, 55, 0.1); }
  100% { box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4); }
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  position: absolute;
  width: 200px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  animation: cardAppear 1s ease-out forwards;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: cardShimmer 3s linear infinite;
  pointer-events: none;
  opacity: 0.5;
  transition: all 0.3s ease;
}

@keyframes cardAppear {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8) rotate(-10deg);
    filter: blur(5px);
  }
  30% {
    opacity: 0.5;
    transform: translateY(20px) scale(0.9) rotate(-5deg);
    filter: blur(2px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02) rotate(2deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: blur(0px);
  }
}

@keyframes cardShimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.card-1 {
  animation: 
    cardAppear 1.2s ease-out 0.5s forwards,
    float1 6s ease-in-out infinite 1.7s;
  z-index: 3;
}

.card-2 {
  animation: 
    cardAppear 1.2s ease-out 1s forwards,
    float2 8s ease-in-out infinite 2.2s;
  z-index: 2;
  transform: translateX(100px) translateY(-50px);
}

.card-3 {
  animation: 
    cardAppear 1.2s ease-out 1.5s forwards,
    float3 7s ease-in-out infinite 2.7s;
  z-index: 1;
  transform: translateX(-100px) translateY(50px);
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateX(100px) translateY(-50px) rotate(0deg); }
  50% { transform: translateX(120px) translateY(-70px) rotate(-2deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateX(-100px) translateY(50px) rotate(0deg); }
  50% { transform: translateX(-120px) translateY(30px) rotate(2deg); }
}

.floating-card:hover {
  transform: scale(1.1) rotate(5deg) translateY(-10px);
  z-index: 10;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  animation-play-state: paused;
}

.floating-card:hover .card-glow {
  animation-duration: 1s;
  opacity: 1;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.floating-card:hover::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #D4AF37, #FFD700, #CD7F32, #B7410E);
  border-radius: 30px;
  z-index: -1;
  animation: pulseGlow 2s ease-in-out infinite;
  opacity: 0.6;
}

.floating-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid #FFD700;
  border-bottom: 3px solid #FFD700;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(205, 127, 50, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  background: linear-gradient(45deg, #D4AF37, #CD7F32, #B7410E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.section-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #6c757d;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  height: 300px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.feature-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
}

/* Дополнительное скрытие элементов при перевороте */
.feature-card:hover .card-front h3,
.feature-card:hover .card-front p {
  opacity: 0;
  visibility: hidden;
}

.feature-card:hover .card-back h4,
.feature-card:hover .card-back p {
  opacity: 1;
  visibility: visible;
}

/* Стили для обратной стороны карточки */
.card-back h4 {
  margin-top: 70px;
  margin-bottom: 15px;
}

.card-back p {
  margin-bottom: 0;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(10000%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.feature-card h3, .feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 16px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Showcase Section */
.showcase-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  animation: parallaxMove 20s linear infinite;
}

.layer-1 {
  background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation-duration: 25s;
}

.layer-2 {
  background: radial-gradient(circle at 80% 20%, rgba(205, 127, 50, 0.08) 0%, transparent 50%);
  animation-duration: 30s;
  animation-direction: reverse;
}

.layer-3 {
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation-duration: 35s;
}

@keyframes parallaxMove {
  0% { transform: translateX(-10%) translateY(-10%); }
  100% { transform: translateX(10%) translateY(10%); }
}

.showcase-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: fadeInLeft 1s ease-out;
}

.showcase-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #D4AF37;
  font-weight: 300;
  margin-bottom: 30px;
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.showcase-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInLeft 1s ease-out 0.4s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.showcase-stats {
  display: flex;
  gap: 40px;
  animation: fadeInLeft 1s ease-out 0.6s both;
}

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

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.8s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.game-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.game-preview:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.preview-image {
  width: 100%;
  height: auto;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.game-preview:hover .preview-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.play-icon {
  font-size: 24px;
  color: #1a1a2e;
  margin-left: 4px;
}

/* Gameplay Section */
.gameplay-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.gameplay-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(205, 127, 50, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gameplay-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.gameplay-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  background: linear-gradient(45deg, #D4AF37, #CD7F32, #B7410E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.gameplay-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #6c757d;
  font-weight: 300;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.gameplay-description {
  font-size: 18px;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.gameplay-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.game-info {
  animation: fadeInLeft 1s ease-out 0.6s both;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.info-card h4 {
  font-size: 32px;
  font-weight: 900;
  color: #D4AF37;
  margin-bottom: 20px;
  text-align: center;
}

.info-card p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
}

.info-badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.info-badge span {
  font-size: 14px;
  color: #D4AF37;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.game-action {
  animation: fadeInRight 1s ease-out 0.8s both;
}

.action-content {
  margin-bottom: 40px;
}

.action-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.action-content p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-play-now {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #D4AF37, #FFD700, #CD7F32);
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-play-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-play-now:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
}

.btn-play-now:hover::before {
  left: 100%;
}

.btn-icon {
  font-size: 24px;
  animation: bounce 2s infinite;
}

.action-visual {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-machine {
  position: relative;
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid #D4AF37;
}

.reel-container {
  display: flex;
  gap: 10px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.reel {
  width: 80px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.symbol {
  font-size: 24px;
  animation: symbolSpin 3s linear infinite;
}

.reel-1 .symbol:nth-child(1) { animation-delay: 0s; }
.reel-1 .symbol:nth-child(2) { animation-delay: 1s; }
.reel-1 .symbol:nth-child(3) { animation-delay: 2s; }

.reel-2 .symbol:nth-child(1) { animation-delay: 0.3s; }
.reel-2 .symbol:nth-child(2) { animation-delay: 1.3s; }
.reel-2 .symbol:nth-child(3) { animation-delay: 2.3s; }

.reel-3 .symbol:nth-child(1) { animation-delay: 0.6s; }
.reel-3 .symbol:nth-child(2) { animation-delay: 1.6s; }
.reel-3 .symbol:nth-child(3) { animation-delay: 2.6s; }

@keyframes symbolSpin {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.5; }
  100% { transform: translateY(0) rotate(360deg); opacity: 1; }
}

.slot-lights {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #D4AF37, #FFD700, #CD7F32, #B7410E);
  border-radius: 25px;
  z-index: -1;
  animation: lightPulse 2s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  animation: patternMove 30s linear infinite;
}

.pattern-1 {
  background: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.3) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(205, 127, 50, 0.3) 2px, transparent 2px);
  background-size: 50px 50px;
  animation-duration: 25s;
}

.pattern-2 {
  background: 
    linear-gradient(45deg, transparent 48%, rgba(255, 215, 0, 0.1) 49%, rgba(255, 215, 0, 0.1) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.1) 49%, rgba(212, 175, 55, 0.1) 51%, transparent 52%);
  background-size: 30px 30px;
  animation-duration: 35s;
  animation-direction: reverse;
}

.pattern-3 {
  background: 
    radial-gradient(circle at 50% 50%, rgba(183, 65, 14, 0.2) 1px, transparent 1px);
  background-size: 80px 80px;
  animation-duration: 40s;
}

@keyframes patternMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(50px) translateY(50px); }
}

.about-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  animation: fadeInLeft 1s ease-out;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(205, 127, 50, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #1a1a2e;
}

.overlay-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 16px;
  font-weight: 300;
}

.about-text {
  animation: fadeInRight 1s ease-out 0.2s both;
}

.about-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.about-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: #D4AF37;
  font-weight: 300;
  margin-bottom: 30px;
}

.about-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.detail-item h3, .detail-item h4 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.detail-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive Design для новых секций */
@media (max-width: 768px) {
  .hero-visual {
    height: 300px;
  }
  
  .floating-card {
    width: 150px;
    height: 200px;
  }
  
  .card-2 {
    transform: translateX(50px) translateY(-30px);
  }
  
  .card-3 {
    transform: translateX(-50px) translateY(30px);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .showcase-content,
  .gameplay-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .showcase-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .slot-machine {
    width: 250px;
    height: 150px;
  }
  
  .reel {
    width: 60px;
    height: 100px;
  }
  
  .symbol {
    font-size: 18px;
  }
}
