@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Poppins:100,200,300,regular,500,600,700,800,900&display=swap);

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html {
  overflow-x: hidden;
}

html,
body {
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #090900;
  width: 100%;
  position: relative;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

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

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #ffd703;
  font-weight: 600;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

table tr td,
table tr th {
  border: 1px solid #fff;
  padding: 15px;
}

table tr th {
  background-color: #ffd703;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

table tr td:hover {
  background-color: rgba(76, 57, 57, 0.6352941176);
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #1d1d1d;
  padding: 20px 0;
  box-shadow: 0 0 5px #ffd703;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .container .logo {
  max-width: 150px;
  font-size: 40px;
  font-weight: 600;
}

.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .container .auth .btn-1 {
  background: #df2dbd;
}

.header .container .auth .btn-1:hover {
  background: #e946cb;
}

.header .container .auth .btn-2 {
  background: linear-gradient(253.67deg, #ffd703 2.27%, #ffd703 94.48%);
  color: #000;
  font-weight: 600;
}

.header .container .auth .btn-2:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #e5ff55 94.48%);
}

.btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 20px 0 50px;
}

.main .banner {
  background: url("../img/bg-banner.png") center/cover no-repeat;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  margin: 2rem 0;
  min-height: 300px;
}

.main .banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  flex: 1;
}

.main .banner__title {
  background-color: #fff;
  color: #111;
  border-radius: 20px;
  padding: 0.8rem 1.5rem;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.main .banner__text {
  font-size: 36px;
  color: #fff;
  text-align: left;
  font-weight: 700;
  line-height: 110%;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main .banner__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ffd703, #ffed4e);
  border-radius: 10px;
  color: #111;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 3, 0.3);
}

.main .banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 3, 0.4);
}

.main .banner__image {
  flex: 0 0 auto;
}

.main .banner__image img {
  max-width: 300px;
  height: auto;
}

.adv {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 2rem 0;
}

.adv__item {
  background: linear-gradient(135deg, #1d1d1d, #2a2a2a);
  padding: 2rem;
  flex: 1;
  border-radius: 15px;
  border: 1px solid #ffd703;
  transition: transform 0.3s ease;
}

.adv__item:hover {
  transform: translateY(-5px);
}

.adv__item h3 {
  color: #ffd703;
  margin-bottom: 1.5rem;
  text-align: center;
}

.adv__item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 0 0 1.5rem;
  list-style: none;
}

.adv__item ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
}

.adv__item .plus li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: -25px;
  font-size: 18px;
  color: #ffd703;
  font-weight: 600;
}

.adv__item .minus li::before {
  content: '✗';
  position: absolute;
  top: 0;
  left: -25px;
  font-size: 18px;
  color: #ff4757;
  font-weight: 600;
}

/* Секция игр */
.games-section {
  margin: 3rem 0;
  text-align: center;
}

.games-section h2 {
  color: #ffd703;
  margin-bottom: 2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.game-card {
  background: linear-gradient(135deg, #1d1d1d, #2a2a2a);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
  text-align: center;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: #ffd703;
  box-shadow: 0 10px 25px rgba(255, 215, 3, 0.2);
}

.game-image {
  font-size: 48px;
  margin-bottom: 1rem;
}

.game-card h4 {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 18px;
}

.game-card p {
  color: #ccc;
  font-size: 14px;
  margin: 0.5rem 0;
}

.game-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #ffd703, #ffed4e);
  color: #111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 3, 0.3);
}

/* Навигация по странице */
.page-nav {
  background: #1d1d1d;
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  border: 1px solid #ffd703;
}

.page-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-nav ul li a {
  display: block;
  padding: 0.5rem 1rem;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.page-nav ul li a:hover {
  background: #ffd703;
  color: #111;
  transform: translateY(-2px);
}

.main nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main nav ul li:hover {
  text-decoration: underline;
}

.main__col {
  text-align: center;
  padding: 50px 16px;
  border-bottom: 2px solid #ffd703;
}

.main__col .wrapper {
  max-width: 50vw;
  margin: 0 auto;
}

.main__col p {
  margin: 20px 0;
  font-size: 24px;
}

.main__btn {
  background: #ffd703;
  width: 250px;
  margin: 40px auto;
  animation: glowing1 1500ms infinite;
  color: black;
  font-weight: 600
}

.main__btn:hover {
  background: #ffd703;
}

.main .content {
  padding: 50px 0 0 0;
}

.main .content p {
  margin: 15px 0;
}

.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.footer {
  padding: 20px 0 30px;
  background-color: #1d1d1d;
  box-shadow: 0 0 5px #ffd703;
}

.footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer nav ul li:hover {
  text-decoration: underline;
}

.footer .copyright {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .main .banner__title {
    font-size: 18px;
    padding: 0.6rem 1rem;
  }

  .main .banner__text {
    font-size: 20px;
  }

  .adv__item {
    padding: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
    margin: 15px 0;
  }

  h3 {
    font-size: 20px;
    margin: 10px 0;
  }

  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  .main .banner {
    margin: 1rem 0;
  }

  table {
    font-size: 14px;
  }

  table tr td,
  table tr th {
    padding: 8px;
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .header .container .auth {
    gap: 8px;
  }

  .header .container .auth .btn {
    padding: 8px 12px;
    font-size: 14px;
    width: auto;
  }

  .main {
    padding: 30px 0;
  }

  .main .banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .main .banner__content {
    align-items: center;
  }

  .main .banner__text {
    font-size: 24px;
  }

  .main .banner__btn {
    width: 100%;
    max-width: 280px;
    font-size: 18px;
    padding: 1.2rem;
    margin: 0 auto;
  }

  .main .banner__image {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .main .banner__image img {
    max-width: 80%;
    width: auto;
    height: auto;
  }

  .main .banner__image img {
    max-width: 100%;
    width: auto;
    height: auto;
  }

  .adv {
    flex-direction: column;
    gap: 15px;
  }

  .adv__item {
    padding: 1.5rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  .game-card {
    padding: 1rem;
  }

  .game-image {
    font-size: 36px;
  }

  .page-nav ul {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 8px;
  }

  .page-nav ul li a {
    padding: 0.7rem;
    font-size: 13px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .age-warning {
    flex-direction: column;
    gap: 5px;
  }

  .payment-methods {
    align-items: center;
  }

  .main nav ul {
    gap: 15px;
    font-size: 14px;
  }

  .main__col {
    padding: 30px 16px;
  }

  .main__col p {
    font-size: 20px;
  }

  .main__col .wrapper {
    max-width: 100%;
  }

  .main .content {
    padding: 30px 0 0 0;
  }

  .main .content img {
    max-width: 100%;
  }

  .footer .container nav ul {
    font-size: 14px;
  }
}

@keyframes glowing1 {
  0% {
    box-shadow: 0 0 5px #4d4d4d;
  }

  50% {
    box-shadow: 0 0 20px #df2dbd;
  }

  100% {
    box-shadow: 0 0 5px #4d4d4d;
  }
}

.anchors-block {
  border-radius: 6px;
  padding: 15px;
  background: #1d1d1d;
}

.anchors-block span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.anchors-block ul {
  margin: 0;
  padding: 0 0 0 25px;
  list-style: none;
}

.anchors-block ul li {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.anchors-block ul li * {
  line-height: 1;
}

.anchors-block ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.anchors-block ul li a:hover {
  color: #1d1d1d;
}

.footer {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  padding: 40px 0 20px;
  margin-top: 40px;
  border-top: 2px solid #ffd703;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: #ffd703;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-license {
  background: #333;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  color: #ffd703;
  margin-top: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffd703;
}

.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-item {
  background: #333;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #ffd703;
}

.copyright {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 15px;
}

.age-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.age-badge {
  background: #ff4757;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.age-warning p {
  font-size: 12px;
  color: #ff4757;
  margin: 0;
}
/* R7 Casino specific styles */
.content {
  padding: 2rem 0;
}

.content h1 {
  background: linear-gradient(135deg, #ffd703, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 2rem 0;
}

.content h2 {
  color: #ffd703;
  border-bottom: 2px solid #ffd703;
  padding-bottom: 0.5rem;
  margin: 2rem 0 1rem 0;
}

.content h3 {
  color: #fff;
  margin: 1.5rem 0 1rem 0;
}

.content h4 {
  color: #ffd703;
  font-size: 18px;
  margin: 1rem 0 0.5rem 0;
  font-weight: 600;
}

.content section {
  background: linear-gradient(135deg, #1d1d1d, #2a2a2a);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid #333;
}

.content section:hover {
  border-color: #ffd703;
  box-shadow: 0 5px 20px rgba(255, 215, 3, 0.1);
}

/* FAQ styling */
.content section div {
  background: #333;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 4px solid #ffd703;
  transition: all 0.3s ease;
}

.content section div:hover {
  background: #3a3a3a;
  transform: translateX(5px);
}

/* Table responsive improvements */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
  }
  
  table tr td,
  table tr th {
    padding: 8px 6px;
    min-width: 120px;
  }
  
  .content section {
    padding: 1rem;
  }
  
  .content h1 {
    font-size: 28px;
  }
  
  .content h2 {
    font-size: 22px;
  }
}

/* Enhanced button styles */
.banner__btn {
  position: relative;
  overflow: hidden;
}

.banner__btn::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;
}

.banner__btn:hover::before {
  left: 100%;
}
/* Promotional image styling */
.promo-image {
  text-align: center;
  margin: 3rem 0;
  padding: 1rem;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 215, 3, 0.3);
  transition: transform 0.3s ease;
}

.promo-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .promo-image {
    margin: 2rem 0;
    padding: 0.5rem;
  }
}