/* Reset and base styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

:active, :focus { outline: 0; }
a:active, a:focus { outline: 0; }

aside, footer, header, nav { display: block; }

body, html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

button, input, textarea { font-family: inherit; }
input::-ms-clear { display: none; }
input, textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::placeholder, textarea::placeholder { color: inherit; }

button {
  cursor: pointer;
  background-color: transparent;
}
button::-moz-focus-inner { padding: 0; border: 0; }

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }

ul li { list-style: none; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* CSS Variables - New Purple/Pink Color Scheme */
:root {
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Poppins", var(--font-main);
  --container-width: 1240px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  
  /* New Purple/Pink Color Palette */
  --primary-purple: #8B5FBF;
  --primary-pink: #E83F8E;
  --accent-magenta: #C53D93;
  --dark-purple: #6D3FB0;
  --light-purple: #A78BFA;
  --background-dark: #1A1035;
  --background-card: #2D1B55;
  --background-light: #35246A;
  --text-white: #FFFFFF;
  --text-light: #E2DAF0;
  --text-gray: #B8B2CC;
  --success: #10B981;
  --warning: #F59E0B;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
  --gradient-dark: linear-gradient(135deg, var(--background-dark) 0%, #2A1A4A 100%);
  --gradient-card: linear-gradient(145deg, var(--background-card) 0%, #3D2A6D 100%);
  --gradient-glow: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-pink) 50%, var(--light-purple) 100%);
  
  /* Effects */
  --shadow-card: 0 10px 30px rgba(139, 95, 191, 0.2);
  --shadow-hover: 0 20px 50px rgba(139, 95, 191, 0.3);
  --shadow-text: 0 2px 10px rgba(139, 95, 191, 0.5);
  --glow-effect: 0 0 20px rgba(139, 95, 191, 0.4);
}

/* Container */
.pw-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
}

@media (max-width: 991px) {
  .pw-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .pw-container {
    padding: 0 var(--container-step-mobile);
  }
}

/* Base page - FIXED Z-INDEX */
.pw-page {
  display: flex;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  color: var(--text-white);
  background: var(--background-dark);
  position: relative;
  z-index: 1;
}

.pw-main {
  flex: 1 1 auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .pw-main {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .pw-main {
    margin-bottom: 30px;
  }
}

/* Background - FIXED POSITION */
.pw-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pw-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, 
    rgba(26, 16, 53, 0.8) 0%, 
    rgba(26, 16, 53, 0.95) 100%);
  z-index: 1;
}

/* Header */
.pw-header {
  position: relative;
  z-index: 10;
  background: var(--gradient-dark);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-purple);
  box-shadow: 0 4px 20px rgba(139, 95, 191, 0.1);
}

.pw-header__container {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

/* Logo */
.pw-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--text-white);
  transition: all 0.3s ease;
  position: relative;
}

.pw-logo:hover {
  color: var(--light-purple);
  transform: translateY(-2px);
}

.pw-logo::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.pw-logo:hover::before {
  width: 100%;
}

.pw-logo span {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 2px 8px rgba(139, 95, 191, 0.3));
}

/* Burger Menu */
.pw-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  position: relative;
}

@media (max-width: 991px) {
  .pw-burger {
    display: flex;
  }
}

.pw-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.pw-header__menu--active .pw-burger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.pw-header__menu--active .pw-burger span:nth-child(2) {
  opacity: 0;
}

.pw-header__menu--active .pw-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.pw-header__menu {
  display: flex;
}

/* Mobile Menu */
@media (max-width: 991px) {
  .pw-header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--gradient-dark);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--primary-purple);
    display: none;
  }

  .pw-header__menu--active {
    display: block;
    right: 0;
  }
}

.pw-header__exit-menu {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: transparent;
}

@media (max-width: 991px) {
  .pw-header__exit-menu {
    display: block;
  }
}

.pw-header__exit-menu::before,
.pw-header__exit-menu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text-white);
  border-radius: 1px;
}

.pw-header__exit-menu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.pw-header__exit-menu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Navigation */
.pw-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .pw-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .pw-nav__list--footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.pw-link {
  transition: all 0.3s ease;
  position: relative;
}

.pw-link--nav {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 8px;
}

.pw-link--nav:hover {
  color: var(--text-white);
  background: rgba(139, 95, 191, 0.1);
  transform: translateY(-2px);
}

.pw-link--nav::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.pw-link--nav:hover::before {
  width: 80%;
}

/* Hero Section */
.pw-hero {
  padding-top: 60px;
  position: relative;
  z-index: 3;
}

@media (max-width: 991px) {
  .pw-hero {
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .pw-hero {
    padding-top: 30px;
  }
}

.pw-hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--shadow-text);
  margin-bottom: 20px;
}

.pw-hero__text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .pw-hero__text {
    font-size: 16px;
  }
}

.pw-hero__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 20px;
}

@media (max-width: 600px) {
  .pw-hero__list {
    gap: 20px;
    margin: 30px auto 15px;
  }
}

.pw-hero__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(139, 95, 191, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 95, 191, 0.3);
  transition: all 0.4s ease;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.pw-hero__item:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(139, 95, 191, 0.15);
  border-color: rgba(139, 95, 191, 0.5);
  box-shadow: var(--shadow-hover);
}

.pw-hero__item span {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 2px 8px rgba(139, 95, 191, 0.3));
}

/* Date Display */
.pw-dates {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(139, 95, 191, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 95, 191, 0.3);
  border-radius: 12px;
  margin: 0 auto;
  width: fit-content;
  box-shadow: var(--shadow-card);
}

@media (max-width: 991px) {
  .pw-dates {
    display: none;
  }
}

.pw-dates__icon {
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pw-dates__wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
}

/* Buttons */
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pw-btn--primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-card);
}

.pw-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.pw-btn--secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--primary-purple);
}

.pw-btn--secondary:hover {
  background: rgba(139, 95, 191, 0.1);
  border-color: var(--primary-pink);
  transform: translateY(-1px);
}

.pw-btn--accept {
  background: var(--success);
  color: var(--text-white);
}

.pw-btn__glare {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pw-btn:hover .pw-btn__glare {
  opacity: 0.6;
  animation: pulseGlare 2s ease-in-out infinite;
}

@keyframes pulseGlare {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Casino Cards Section - FIXED VISIBILITY */
.pw-cards {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
}

.pw-cards__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.pw-cards__item {
  display: block;
  width: 100%;
}

/* Individual Casino Card */
.pw-card {
  background: var(--gradient-card);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(139, 95, 191, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}

.pw-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 95, 191, 0.4);
}

.pw-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-glow);
  z-index: 2;
}

.pw-card__main {
  display: flex;
  align-items: stretch;
  min-height: 160px;
  width: 100%;
}

@media (max-width: 768px) {
  .pw-card__main {
    flex-direction: column;
    min-height: auto;
  }
}

.pw-card__brand {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(45, 27, 85, 0.8);
  border-right: 2px solid rgba(139, 95, 191, 0.2);
  position: relative;
}

@media (max-width: 768px) {
  .pw-card__brand {
    flex: none;
    border-right: none;
    border-bottom: 2px solid rgba(139, 95, 191, 0.2);
    padding: 15px;
  }
}

.pw-card__tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 6px 15px;
  border-radius: 0 0 12px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pw-card__logo {
  max-width: 200px;
  height: 80px;
  transition: all 0.3s ease;
}

.pw-card__logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(139, 95, 191, 0.3));
}

.pw-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 12px;
}

.pw-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.pw-card__name:hover {
  color: var(--light-purple);
  transform: translateX(5px);
}

.pw-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pw-card__star {
  width: 104px;
  height: 20px;
}

.pw-card__score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--warning);
}

.pw-card__bonus {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.pw-card__bonus:hover {
  transform: translateY(-2px);
  text-shadow: var(--shadow-text);
}

.pw-card__details {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(139, 95, 191, 0.05);
  border-top: 1px solid rgba(139, 95, 191, 0.2);
  width: 100%;
}

@media (max-width: 768px) {
  .pw-card__details {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
}

.pw-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .pw-card__features {
    display: none;
  }
}

.pw-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pw-card__feature:hover {
  background: rgba(139, 95, 191, 0.1);
  transform: translateX(5px);
}

.pw-card__feature span {
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pw-card__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.pw-card__link {
  width: 100%;
  text-align: center;
}

.pw-card__payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pw-card__payment {
  width: 28px;
  height: 28px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pw-card__payment:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px) scale(1.1);
}

/* Content Sections (FAQ & Reviews) - FIXED */
.pw-content {
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
}

.pw-content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

@media (max-width: 991px) {
  .pw-content__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.pw-content__block {
  display: block;
  width: 100%;
}

.pw-content__title {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-white);
  padding: 15px 30px;
  background: var(--gradient-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.pw-title-decorated {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--text-white);
  padding: 15px 30px;
  background: var(--gradient-primary);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.pw-title-decorated::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.6s ease;
}

.pw-title-decorated:hover::before {
  left: 100%;
}

.pw-content__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.pw-content__item {
  background: var(--gradient-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(139, 95, 191, 0.2);
  transition: all 0.3s ease;
  width: 100%;
}

.pw-content__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.pw-content__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(139, 95, 191, 0.1);
  border-bottom: 1px solid rgba(139, 95, 191, 0.2);
  width: 100%;
}

.pw-content__question-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-white);
  flex: 1;
}

.pw-content__stars {
  width: 100px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pw-content__answer {
  padding: 20px;
  width: 100%;
}

.pw-content__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Footer */
.pw-footer {
  position: relative;
  z-index: 10;
  background: var(--gradient-dark);
  border-top: 2px solid var(--primary-purple);
  backdrop-filter: blur(10px);
}

.pw-footer__container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pw-footer__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.pw-footer__logo-link {
  height: 40px;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}

.pw-footer__logo-link:hover {
  transform: translateY(-3px);
  filter: grayscale(0) brightness(1.2);
}

.pw-footer__logo-exception {
  height: 35px;
  padding-top: 5px;
}

.pw-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 991px) {
  .pw-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.pw-footer__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--light-purple);
  margin-bottom: 15px;
}

.pw-footer__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.pw-nav__age {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-pink);
}

/* Cookie Popup */
.pw-cookie {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  padding: 25px;
  background: var(--gradient-card);
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  border: 2px solid rgba(139, 95, 191, 0.3);
  backdrop-filter: blur(20px);
  display: none;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pw-cookie--show {
  display: block;
  transform: translateY(0);
  opacity: 1;
  animation: cookieSlideIn 0.6s ease-out;
}

@keyframes cookieSlideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pw-cookie__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  margin-bottom: 15px;
  text-align: center;
}

.pw-cookie__text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}

.pw-cookie__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 480px) {
  .pw-cookie {
    left: 20px;
    right: 20px;
    max-width: none;
    bottom: 10px;
  }
  
  .pw-cookie__actions {
    flex-direction: column;
  }
}

/* Utility classes */
.pw-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/* Spacing */
.pw-mb-10 { margin-bottom: 10px; }
.pw-mb-15 { margin-bottom: 15px; }
.pw-mb-20 { margin-bottom: 20px; }

.pw-mb-20-10 {
  margin-bottom: 20px;
}
@media (max-width: 991px) { .pw-mb-20-10 { margin-bottom: 15px; } }
@media (max-width: 600px) { .pw-mb-20-10 { margin-bottom: 10px; } }

.pw-mb-30 { margin-bottom: 30px; }
.pw-mb-30-20 {
  margin-bottom: 30px;
}
@media (max-width: 991px) { .pw-mb-30-20 { margin-bottom: 25px; } }
@media (max-width: 600px) { .pw-mb-30-20 { margin-bottom: 20px; } }

.pw-mb-50-25 {
  margin-bottom: 50px;
}
@media (max-width: 991px) { .pw-mb-50-25 { margin-bottom: 35px; } }
@media (max-width: 600px) { .pw-mb-50-25 { margin-bottom: 25px; } }

.pw-m-auto { margin-left: auto; margin-right: auto; }

/* Text Alignment */
.pw-text-center { text-align: center; }
.pw-text-left { text-align: left; }
.pw-text-right { text-align: right; }

/* Transforms */
.pw-uppercase { text-transform: uppercase; }

/* Additional Responsive Styles */
@media (max-width: 768px) {
  .pw-hero__item {
    min-width: 160px;
    padding: 15px;
    gap: 10px;
  }
  
  .pw-hero__item span {
    width: 32px;
    height: 32px;
  }
  
  .pw-card__brand {
    flex: 0 0 250px;
  }
  
  .pw-card__logo {
    height: 70px;
    max-width: 180px;
  }
}

@media (max-width: 600px) {
  .pw-hero__list {
    flex-direction: column;
    align-items: center;
  }
  
  .pw-hero__item {
    max-width: 300px;
    width: 100%;
  }
  
  .pw-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .pw-card__name {
    font-size: 18px;
  }
  
  .pw-card__bonus {
    font-size: 16px;
  }
  
  .pw-content__question,
  .pw-content__answer {
    padding: 15px;
  }
}
