:root {
  --header-bg: linear-gradient(90deg, #f5f5f5 0%, #f5f5f5 100%);
  --background: #f5f5f5;
  --button-gradient: linear-gradient(90deg, #20c85b 0%, #8bb3cd 100%);
  --footer-bg: #f5f5f5;
  --faq-bg: #f5f5f5;
  --font-color: #2f2f2f;
  --border-radius: 18px;
}

body {
  background: var(--background);
  color: var(--font-color);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 20px 32px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(32, 200, 91, 0.1);
  backdrop-filter: blur(10px);
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
  order: 1;
  display: flex;
  gap: 24px;
  z-index: 2;
}

.register-btn {
  order: 3;
  margin-left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 200, 91, 0.3);
  position: relative;
  overflow: hidden;
}

.register-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;
}

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 200, 91, 0.4);
  background: linear-gradient(135deg, #8bb3cd 0%, #20c85b 100%);
}

.register-btn a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.burger-menu {
  display: none;
  background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 200, 91, 0.3);
}

.burger-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 200, 91, 0.4);
  background: linear-gradient(135deg, #8bb3cd 0%, #20c85b 100%);
}

@media (max-width: 768px) {
  .logo {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    text-align: center;
    margin: 8px 0;
    order: 2;
  }
  .site-header {
    justify-content: flex-start;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 220px;
    background: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.08);
    border-radius: 0 18px 18px 0;
    padding: 60px 24px 24px 24px;
    z-index: 2000;
    gap: 24px;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .burger-menu {
    display: block;
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2100;
  }
  .register-btn {
    order: 3;
    margin-left: 0;
  }
  .nav-links.open a {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 16px 20px;
    margin-bottom: 12px;
    color: var(--font-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: block;
    border: 1px solid rgba(32, 200, 91, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-links.open a:hover, .nav-links.open a:focus {
    background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
    color: #fff;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 200, 91, 0.3);
  }
}

@media (min-width: 769px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .nav-links {
    position: static;
    margin-right: auto;
    margin-left: 0;
    z-index: 2;
  }
  .register-btn {
    margin-left: auto;
    margin-right: 0;
    z-index: 2;
  }
  .logo {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 1;
  }
  .nav-links a {
    color: var(--font-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: block;
    background: rgba(32, 200, 91, 0.05);
    border: 1px solid rgba(32, 200, 91, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(32, 200, 91, 0.1), transparent);
    transition: left 0.5s;
  }
  
  .nav-links a:hover::before {
    left: 100%;
  }
  
  .nav-links a:hover, .nav-links a:focus {
    background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
    color: #fff;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 200, 91, 0.3);
  }
}

.intro {
  max-width: 800px;
  margin: 40px auto 24px auto;
  text-align: center;
}

.cta-btn {
  background: var(--button-gradient);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 24px;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0;
  margin-top: 32px;
}

.bonuses {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.bonus-block {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px 16px;
  min-width: 220px;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-block button {
  background: var(--button-gradient);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .bonuses {
    flex-direction: column;
    align-items: center;
  }
}

.text-sections {
  max-width: 900px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-sections .text-block:first-child {
  padding-top: 48px;
  padding-bottom: 24px;
}

.text-block {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.text-block button {
  background: var(--button-gradient);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 16px;
}

.section-img {
  width: 100%;
  border-radius: var(--border-radius);
  margin: 16px 0;
}

.faq {
  background: var(--faq-bg);
  padding: 40px 0;
}

.faq-block {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item + .faq-item {
  margin-top: 20px;
}

.site-footer {
  background: linear-gradient(135deg, #2f2f2f 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 200, 91, 0.3);
}

.social-icons i:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(32, 200, 91, 0.4);
  background: linear-gradient(135deg, #8bb3cd 0%, #20c85b 100%);
}

.payment-systems {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-systems span {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #2f2f2f;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-systems span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
  color: white;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer-nav a:hover {
  background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(32, 200, 91, 0.3);
}

.user-protection {
  max-width: 800px;
  margin: 0 auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.user-protection p {
  line-height: 1.8;
  font-size: 0.95rem;
  color: #e0e0e0;
  margin: 0;
  text-align: justify;
}

/* Responsive footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px;
    border-radius: 16px 16px 0 0;
  }
  
  .social-icons {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .social-icons i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .payment-systems {
    gap: 10px;
    padding: 15px;
    margin-bottom: 25px;
  }
  
  .payment-systems span {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .footer-nav {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .footer-nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .user-protection {
    padding: 20px;
  }
  
  .user-protection p {
    font-size: 0.9rem;
    text-align: left;
  }
}

.block-btn {
  display: block;
  margin: 16px auto 0 auto;
  background: var(--button-gradient);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: fit-content;
}

.bonus-icon {
  margin: 8px 0 8px 0;
  font-size: 2rem;
  color: #20c85b;
}

.faq-answer {
  display: none;
  transition: all 0.3s;
}
.faq-item:hover .faq-answer {
  display: block;
}

.bonus-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--font-color);
  margin-bottom: 8px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

table th {
  background: linear-gradient(135deg, #20c85b 0%, #8bb3cd 100%);
  color: white;
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover td {
  background: linear-gradient(135deg, rgba(32, 200, 91, 0.05) 0%, rgba(139, 179, 205, 0.05) 100%);
  transform: translateX(4px);
}

table tr:nth-child(even) td {
  background: rgba(248, 249, 250, 0.5);
}

table tr:nth-child(even):hover td {
  background: linear-gradient(135deg, rgba(32, 200, 91, 0.08) 0%, rgba(139, 179, 205, 0.08) 100%);
}

/* Responsive table */
@media (max-width: 768px) {
  table {
    font-size: 0.9rem;
    border-radius: 12px;
  }
  
  table th,
  table td {
    padding: 12px 16px;
  }
  
  table th {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    padding: 12px 6px;
    min-width: 0;
  }
  .logo {
    font-size: 1.3rem;
    margin: 6px 0;
  }
  .register-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    margin: 10px 0 0 0;
  }
  .nav-links {
    width: 100vw;
    min-width: 0;
    left: 0;
    padding: 60px 8px 8px 8px;
    border-radius: 0 0 18px 18px;
  }
  .nav-links.open {
    width: 100vw;
    min-width: 0;
    left: 0;
    padding: 60px 8px 8px 8px;
    border-radius: 0 0 18px 18px;
  }
  .nav-links.open a {
    font-size: 1rem;
    padding: 14px 8px;
    margin-bottom: 8px;
  }
  .intro, .text-sections, .bonuses, .site-footer, .user-protection {
    padding-left: 6px;
    padding-right: 6px;
  }
  .text-block {
    padding: 18px 8px;
    font-size: 0.97rem;
  }
  .text-sections .text-block:first-child {
    padding-top: 32px;
    padding-bottom: 16px;
  }
  .block-btn, .cta-btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px 0;
    margin-top: 12px;
    margin-bottom: 0;
    min-width: 0;
    box-sizing: border-box;
  }
  .section-img {
    width: 100%;
    height: auto;
    max-width: 100vw;
    border-radius: 12px;
    margin: 12px 0;
  }
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  table th, table td {
    padding: 10px 8px;
    font-size: 0.95rem;
    word-break: break-word;
  }
} 