/* Reset & Base */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif;}
body.ppe-body {background:#1e1f1b;color:#f6f5ee;line-height:1.6;scroll-behavior:smooth;}
a {text-decoration:none;color:inherit;}
.ppe-container {width:90%;max-width:1200px;margin:0 auto;}

/* Header */
.ppe-header {
  position: relative;
  background: linear-gradient(135deg, #ff7f50, #adff2f); /* оранжево-лаймовый */
  color: #fff;
  font-family: 'Poppins', sans-serif;
 
  z-index: 1000;
}

/* Верхний баннер */
.ppe-top-banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 6px 20px;
  background: rgba(0,0,0,0.15);
  font-size: 0.85rem;
  text-align: center;
}

.ppe-banner-card {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.ppe-banner-card:hover {
  transform: scale(1.05);
}

/* Логотип */
.ppe-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.ppe-logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.ppe-logo-circle img {
  width: 40px;
  height: 40px;
}
.ppe-logo-link:hover .ppe-logo-circle {
  transform: rotate(15deg) scale(1.1);
}

/* Навигация */
.ppe-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ppe-nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.ppe-nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}
.ppe-nav-list li a:hover {
  background: rgba(255,255,255,0.3);
  color: #000;
}

/* Бургер меню */
.ppe-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}


/* Бургер анимация */
.ppe-burger.ppe-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ppe-burger.ppe-active span:nth-child(2) {
  opacity: 0;
}
.ppe-burger.ppe-active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.ppe-burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Декоративные фигуры */
.ppe-header-shapes span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0.3;
}
.shape-circle {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  top: 20px;
  left: 10%;
}
.shape-diamond {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  transform: rotate(45deg);
  top: 50px;
  right: 15%;
}
.shape-line {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  bottom: 10px;
  left: 30%;
}
/* Hero */
.ppe-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #ff7f50, #adff2f); /* градиент */
}

.ppe-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 70%);
  z-index: 1;
}

.ppe-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.25);
  z-index: 2;
}

.ppe-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}

.ppe-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

.ppe-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeUp 1.3s ease forwards;
}

.ppe-hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #adff2f;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ppe-hero-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Анимированные фигуры */
.ppe-hero-animated-shapes span {
  position: absolute;
  display: block;
  opacity: 0.3;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.shape-circle { width: 50px; height: 50px; top: 10%; left: 15%; }
.shape-diamond { width: 40px; height: 40px; transform: rotate(45deg); top: 40%; right: 20%; }
.shape-line { width: 120px; height: 4px; top: 70%; left: 25%; }
.shape-triangle {
  width: 0; height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(255,255,255,0.2);
  top: 60%; left: 50%;
}

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

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Features */
.ppe-casino-features {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #ff7f50, #adff2f);
  color: #fff;
  overflow: hidden;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.ppe-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Сетка карточек */
.ppe-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Карточки */
.ppe-feature-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 20px;
  transition: transform 0.4s, background 0.4s, box-shadow 0.4s;
  width: 100%;
  max-width: 350px;
}
.ppe-feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Иконки */
.ppe-feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: floatIcon 3s ease-in-out infinite alternate;
}

/* Заголовки карточек */
.ppe-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Текст карточек */
.ppe-feature-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Предупреждение о возрасте */
.ppe-age-warning {
  margin-top: 50px;
  background: rgba(255,255,255,0.2);
  padding: 15px 25px;
  border-radius: 15px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Декоративные фигуры */
.ppe-features-shapes span {
  position: absolute;
  display: block;
  opacity: 0.25;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape-circle {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  top: 10%; left: 15%;
}
.shape-diamond {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.2);
  transform: rotate(45deg);
  top: 40%; right: 20%;
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid rgba(255,255,255,0.15);
  top: 70%; left: 50%;
}

/* Анимация */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Offers */
.ppe-bwin-creative {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 80px 60px;
  background: linear-gradient(135deg, #ff8c00, #adff2f 70%);
  color: #111;
  box-shadow: 0 0 60px rgba(255, 140, 0, 0.4);
}

.ppe-bwin-light-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(173,255,47,0.2), transparent 70%);
  z-index: 0;
  animation: moveLights 20s linear infinite alternate;
}

@keyframes moveLights {
  from { background-position: 0 0, 100% 100%; }
  to { background-position: 100px 50px, 0 50px; }
}

.ppe-bwin-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 30px;
}

.ppe-bwin-logo {
  width: 120px;
  display: inline-block;
  transition: transform 0.5s;
}
.ppe-bwin-logo:hover {
  transform: scale(1.1) rotate(-5deg);
}

.ppe-bwin-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-top: 20px;
}

.ppe-bwin-rating {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.ppe-bwin-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.ppe-bwin-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.ppe-bwin-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
}

.ppe-bwin-features li {
  flex: 1 1 45%;
  background: rgba(255,255,255,0.2);
  padding: 12px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ppe-bwin-features li:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-5px);
}

.ppe-bwin-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ppe-payments h4 {
  font-weight: 700;
  margin-bottom: 6px;
}

.ppe-btn {
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff8c00, #adff2f);
  color: #111;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ppe-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 40px rgba(255, 255, 0, 0.5);
}



/* About */
.ppe-about {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.ppe-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; 
  background-image: url('../img/about-bg.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  opacity: 0.4;
  z-index: -1;
}
section#offers {
  padding: 100px 0;
}
.ppe-payments {

}
/* Сетка карточек и списка */
.ppe-about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Карточки */
.ppe-about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.ppe-about-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}
.ppe-about-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.ppe-about-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* Список справа */
.ppe-about-list h2 { font-size: 2rem; color: #fff; margin-bottom: 25px; }
.ppe-about-list ul { list-style: none; padding: 0; margin-bottom: 25px; }
.ppe-about-list li { font-size: 1.1rem; margin-bottom: 15px; color: #fff; }
.ppe-about-list .ppe-btn {
  background: #ff7f50;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}
.ppe-about-list .ppe-btn:hover {
  background: #adff2f;
  color: #000;
}

/* FAQ */
.ppe-faq {
  background: linear-gradient(135deg, #ff9800 0%, #d4ff00 100%);
  padding: 100px 20px;
  color: #222;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.ppe-faq::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(40px);
}

.ppe-container {
  max-width: 900px;
  margin: 0 auto;
}

.ppe-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 60px;
}

.ppe-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ppe-faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-left: 6px solid #ff6f00;
  border-radius: 16px;
  padding: 20px 25px;
  transition: all 0.3s ease;
}

.ppe-faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ppe-faq-question {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  transition: color 0.3s;
}

.ppe-faq-question:hover {
  color: #ff6f00;
}

.ppe-faq-toggle {
  font-size: 1.5rem;
  color: #aeea00;
}

.ppe-faq-answer {
  margin-top: 15px;
  color: #444;
  line-height: 1.6;
}

.ppe-faq-item.active .ppe-faq-answer {
  display: block;
}

.ppe-faq-item.active .ppe-faq-toggle {
  transform: rotate(45deg);
  color: #ff6f00;
}
/* Footer */
.ppe-footer {
  background: linear-gradient(135deg, #ff8c00 0%, #d9ff00 100%);
  color: #222;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.ppe-footer-top {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 60px 0 40px;
}

.ppe-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ppe-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.ppe-footer-age {
  margin-top: 10px;
  font-weight: 500;
  color: #fff;
}

.ppe-footer-column h4,
.ppe-footer-contact h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.ppe-footer-column ul,
.ppe-footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppe-footer-column li,
.ppe-footer-contact li {
  margin-bottom: 6px;
}

.ppe-footer-column a,
.ppe-footer-contact a {
  color: #222;
  text-decoration: none;
  transition: 0.2s ease;
}

.ppe-footer-column a:hover,
.ppe-footer-contact a:hover {
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.ppe-footer-seals {
  background: rgba(0,0,0,0.05);
  padding: 30px 0;
  text-align: center;
}

.ppe-footer-seals h4 {
  color: #222;
  margin-bottom: 20px;
}

.ppe-footer-seals-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.ppe-footer-seals-grid img {
  height: 50px;
  filter: saturate(1.1);
  transition: transform 0.3s;
}

.ppe-footer-seals-grid img:hover {
  transform: scale(1.1);
}

.ppe-footer-bottom {
  background: rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #111;
}
.top-banner {    background-color: #12d1b1;
    color: #333;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
.ppe-responsible {
  background: linear-gradient(135deg, #ffb300 0%, #c6ff00 100%);
  padding: 120px 20px;
  color: #222;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.ppe-responsible::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

.ppe-container {
  max-width: 900px;
  margin: 0 auto;
}

.ppe-section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.ppe-lead {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 80px;
}

.ppe-responsible-flow {
  position: relative;
}

.ppe-line {
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, #ff6f00, #aeea00);
  border-radius: 3px;
  opacity: 0.5;
}

.ppe-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}

.ppe-step:last-child {
  margin-bottom: 0;
}

.ppe-step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fff 0%, #ffe082 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  z-index: 2;
  transition: transform 0.3s ease;
}

.ppe-step:hover .ppe-step-icon {
  transform: scale(1.15) rotate(8deg);
}

.ppe-step-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 25px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  width: 100%;
  transition: transform 0.3s ease;
}

.ppe-step:hover .ppe-step-content {
  transform: translateY(-3px);
}

.ppe-step-content h3 {
  color: #ff6f00;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.ppe-step-content p, 
.ppe-step-content li, 
.ppe-step-content a {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

.ppe-step-content a {
  color: #c6ff00;
  text-decoration: underline;
  font-weight: 600;
}

.ppe-step-content ul {
  padding-left: 20px;
}

.ppe-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #e6f0c9;
  border-left: 5px solid #a3b18a;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
 
  transition: all 0.6s ease-in-out;
}

.ppe-step.visible {
  transform: translateY(0);
  opacity: 1;
}

.ppe-step-icon {
  font-size: 2rem;
  flex-shrink: 0;
  background: #d4e0b2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.ppe-step-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #3b4b1f;
}

.ppe-step-content ul {
  padding-left: 20px;
  margin: 0;
}
.ppe-step-content, p.ppe-lead {
  color: #000;
}
.ppe-step-content ul li {
  margin-bottom: 5px;
  color: #000;
}

/* Блоки контента */
.ppe-block {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ppe-block h3 {
  font-size: 1.5rem;
  color:#c2b561;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.ppe-block ul {
  padding-left: 20px;
  list-style-type: disc;
  line-height: 1.6;
}

.ppe-block a {
  color:#9aa75c;
  text-decoration: underline;
  transition: color 0.3s;
}

.ppe-block a:hover {
  color: #c2b561;
}

/* Hover эффекты */
.ppe-block:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Последний блок на всю ширину */
.ppe-block:last-child {
  grid-column: 1 / -1;
}
.ppe-responsible {
    padding-top: 200px;
  }
  a.ppe-logo-link {
    display: flex;
    align-items: center;
  }

  .ppe-contact {
  background: linear-gradient(135deg, #ffb300 0%, #c6ff00 100%);
  color: #222;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.ppe-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ppe-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: 60px;
}

.ppe-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  margin-bottom: 15px;
}

.ppe-contact-info p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.ppe-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppe-contact-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #222;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.ppe-contact-list li i {
  color: #ff6f00;
  font-size: 1.1rem;
}

.ppe-contact-list li:hover {
  transform: translateX(5px);
}

.ppe-contact-socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.ppe-social {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #ff6f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.ppe-social:hover {
  background: #ff6f00;
  color: #fff;
  transform: scale(1.15);
}

.ppe-contact-form-wrapper p {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.ppe-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ppe-contact-form input,
.ppe-contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.ppe-contact-form input:focus,
.ppe-contact-form textarea:focus {
  box-shadow: 0 0 0 3px #aeea00;
}

.ppe-btn {
  background: #ff6f00;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255,111,0,0.3);
}

.ppe-btn:hover {
  background: #c6ff00;
  color: #333;
  transform: translateY(-2px);
}

.ppe-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #a3b18a, #d4e0b2);
  border: none;
  border-radius: 12px;
  color: #2f3b1f;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.ppe-btn:hover {
  background: linear-gradient(135deg, #d4e0b2, #a3b18a);
  transform: translateY(-3px);
}

.ppe-contact-info h2 {
  margin-bottom: 20px;
  color: #4b5d23;
}

.ppe-contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.ppe-contact-info ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.ppe-social a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #334411;
  transition: transform 0.3s, color 0.3s;
}

.ppe-social a:hover {
  transform: translateY(-5px) rotate(10deg);
  color: #556b2f;
}

/* Animations */
@keyframes fadeUp{0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);}}
@media(max-width: 900px){
  .ppe-nav ul {
  display: none; /* скрыто по умолчанию на мобилке */
  flex-direction: column;
  gap: 15px;
  background: rgba(0,0,0,0.85);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  border-radius: 0 0 12px 12px;
  z-index: 999;
}

.ppe-nav ul.ppe-open {
  display: flex;
}
  .ppe-line {
    left: 25px;
  }
.ppe-step-content ul li {
  text-align: left;
}
  .ppe-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ppe-step-icon {
    width: 60px;
    height: 60px;
  }

  .ppe-step-content {
    padding: 20px;
  }
  .ppe-about-grid {
    grid-template-columns: 1fr;
  }
  .ppe-about-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ppe-about-list {
    margin-top: 40px;
  }
  .ppe-faq-question {
    text-align: left;
  }
  .ppe-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ppe-footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .ppe-contact-grid {
    grid-template-columns: 1fr;
  }
  .ppe-about-features-list {
    grid-template-columns: 1fr;
  }
  .ppe-header .ppe-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ppe-nav ul{display:none;}
  .ppe-burger{display:flex;}
  .ppe-top-banner{flex-direction:column;gap:0px; padding: 0;}
  .ppe-responsible .ppe-section-title {
    font-size: 2rem;
  }

  .ppe-responsible .ppe-lead {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .ppe-about-content {
    flex-direction: column;
  }
  .ppe-about-features {
    grid-template-columns: 1fr;
  }
  .ppe-offer-inner{
    flex-direction: column;
    align-items: center;
  }
  .ppe-offer-left, .ppe-offer-center, .ppe-offer-right{
    width: 100%;
  }
}
@media(max-width:768px){
  .ppe-features-grid{grid-template-columns:1fr;}
  .ppe-casino-features .ppe-section-title{font-size:2rem;}
  .ppe-nav ul{display:none;}
  .ppe-burger{display:flex;}
  .ppe-features-grid,.ppe-offers-grid{grid-template-columns:1fr;}
  .ppe-hero h1{font-size:2rem;}
  .ppe-hero p{text-align:center;}
}
