/* PlayWorldTop - Complete Modern Redesign for France */

:root {
  --playworldtop-primary: #FF6B35;
  --playworldtop-primary-dark: #E55A2B;
  --playworldtop-primary-light: #FF8A5C;
  --playworldtop-secondary: #004E89;
  --playworldtop-secondary-dark: #003D6B;
  --playworldtop-secondary-light: #1A6DAA;
  --playworldtop-accent: #FFD23F;
  --playworldtop-accent-dark: #E5BD38;
  --playworldtop-success: #06D6A0;
  --playworldtop-warning: #FFB627;
  --playworldtop-error: #EF476F;
  --playworldtop-background: #FAFBFC;
  --playworldtop-card-bg: #FFFFFF;
  --playworldtop-text: #1A2332;
  --playworldtop-text-light: #5A6C7D;
  --playworldtop-border: #E1E8ED;
  --playworldtop-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --playworldtop-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --playworldtop-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --playworldtop-gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  --playworldtop-gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A6DAA 100%);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--playworldtop-text);
  background: var(--playworldtop-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  min-height: calc(100vh - 80px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--playworldtop-text);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
  margin-bottom: 1rem;
  color: var(--playworldtop-text-light);
  line-height: 1.7;
}

a {
  color: var(--playworldtop-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--playworldtop-primary-dark);
}

/* Navigation */
.playworldtop-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--playworldtop-card-bg);
  box-shadow: var(--playworldtop-shadow);
  transition: all 0.3s ease;
}

.playworldtop-navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.playworldtop-navbar-brand {
  display: flex;
  align-items: center;
}

.playworldtop-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.playworldtop-logo-link:hover {
  transform: scale(1.05);
}

.playworldtop-logo-circle {
  width: 50px;
  height: 50px;
  background: var(--playworldtop-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.playworldtop-site-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: var(--playworldtop-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.playworldtop-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playworldtop-nav-item {
  padding: 0.625rem 1.25rem;
  color: var(--playworldtop-text);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.playworldtop-nav-item:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--playworldtop-primary);
}

.playworldtop-nav-item.active {
  background: rgba(255, 107, 53, 0.15);
  color: var(--playworldtop-primary);
}

.playworldtop-nav-cta {
  background: var(--playworldtop-gradient-primary);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.playworldtop-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

/* Hamburger Menu */
.playworldtop-hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.playworldtop-hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.playworldtop-hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--playworldtop-primary);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.playworldtop-hero {
  position: relative;
  min-height: 90vh;
  margin-top: 80px;
  display: flex;
  align-items: center;
  background: var(--playworldtop-gradient-hero);
  overflow: hidden;
}

.playworldtop-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 50px 50px;
  animation: playworldtop-float 20s linear infinite;
}

@keyframes playworldtop-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50px);
  }
}

.playworldtop-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
}

.playworldtop-hero-title {
  color: white;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.playworldtop-highlight {
  color: var(--playworldtop-accent);
  position: relative;
}

.playworldtop-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.8;
}

.playworldtop-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--playworldtop-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.playworldtop-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  color: var(--playworldtop-primary-dark);
}

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

.playworldtop-floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--playworldtop-shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  animation: playworldtop-bounce 3s ease-in-out infinite;
}

.playworldtop-floating-card i {
  font-size: 1.5rem;
}

.playworldtop-card-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  color: var(--playworldtop-success);
}

.playworldtop-card-2 {
  top: 50%;
  right: 15%;
  animation-delay: 1s;
  color: var(--playworldtop-primary);
}

.playworldtop-card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
  color: var(--playworldtop-secondary);
}

@keyframes playworldtop-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Casinos Section */
.playworldtop-casinos-section {
  padding: 5rem 0;
}

.playworldtop-section-heading {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--playworldtop-secondary);
  position: relative;
}

.playworldtop-section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--playworldtop-gradient-primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.playworldtop-section-subheading {
  text-align: center;
  color: var(--playworldtop-text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.playworldtop-casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.playworldtop-casino-item {
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--playworldtop-shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid var(--playworldtop-border);
}

.playworldtop-casino-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--playworldtop-shadow-lg);
  border-color: var(--playworldtop-primary);
}

.playworldtop-casino-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--playworldtop-gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.playworldtop-casino-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.playworldtop-casino-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  box-shadow: var(--playworldtop-shadow);
  flex-shrink: 0;
}

.playworldtop-icon-winamax {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.playworldtop-icon-pmu {
  background: linear-gradient(135deg, #00A651 0%, #008741 100%);
}

.playworldtop-icon-betclic {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.playworldtop-icon-unibet {
  background: linear-gradient(135deg, #1DB954 0%, #159B44 100%);
}

.playworldtop-icon-parions {
  background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
}

.playworldtop-icon-bwin {
  background: linear-gradient(135deg, #FFCC00 0%, #CC9900 100%);
}

.playworldtop-casino-info {
  flex: 1;
}

.playworldtop-casino-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--playworldtop-text);
}

.playworldtop-casino-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--playworldtop-accent);
}

.playworldtop-rating-text {
  margin-left: 0.5rem;
  color: var(--playworldtop-text-light);
  font-weight: 600;
}

.playworldtop-casino-bonus {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.playworldtop-bonus-label {
  font-size: 0.85rem;
  color: var(--playworldtop-text-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.playworldtop-bonus-value {
  font-size: 1.1rem;
  color: var(--playworldtop-primary);
  font-weight: 700;
}

.playworldtop-casino-features {
  margin-bottom: 1.5rem;
}

.playworldtop-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--playworldtop-text-light);
  font-size: 0.95rem;
}

.playworldtop-feature-item:last-child {
  margin-bottom: 0;
}

.playworldtop-feature-item i {
  color: var(--playworldtop-success);
  font-size: 1rem;
}

.playworldtop-visit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: var(--playworldtop-gradient-primary);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.playworldtop-visit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
  color: white;
}

/* Features Section */
.playworldtop-features-section {
  padding: 5rem 0;
  background: white;
}

.playworldtop-feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.playworldtop-feature-box:hover {
  transform: translateY(-8px);
}

.playworldtop-feature-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--playworldtop-gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 16px rgba(0, 78, 137, 0.3);
  transition: transform 0.3s ease;
}

.playworldtop-feature-box:hover .playworldtop-feature-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.playworldtop-feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--playworldtop-secondary);
}

.playworldtop-feature-text {
  color: var(--playworldtop-text-light);
  line-height: 1.7;
}

/* Footer */
.playworldtop-footer {
  background: var(--playworldtop-secondary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.playworldtop-footer h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.playworldtop-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.playworldtop-footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.playworldtop-footer-contact i {
  color: var(--playworldtop-accent);
  font-size: 1.1rem;
}

.playworldtop-footer-contact a {
  color: rgba(255, 255, 255, 0.9);
}

.playworldtop-footer-contact a:hover {
  color: white;
}

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

.playworldtop-footer-links li {
  margin-bottom: 0.75rem;
}

.playworldtop-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.playworldtop-footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.playworldtop-footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 3rem 0 2rem;
}

.playworldtop-disclaimer-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.playworldtop-disclaimer-box p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.playworldtop-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.playworldtop-disclaimer-box a {
  color: var(--playworldtop-accent);
  font-weight: 600;
}

/* Cookie Consent */
.playworldtop-cookie-popup {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--playworldtop-shadow-lg);
  z-index: 1001;
  border: 2px solid var(--playworldtop-border);
}

.playworldtop-cookie-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.playworldtop-cookie-text h5 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playworldtop-cookie-text h5 i {
  color: var(--playworldtop-primary);
}

.playworldtop-cookie-text p {
  color: var(--playworldtop-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.playworldtop-cookie-text a {
  color: var(--playworldtop-primary);
  font-weight: 600;
}

.playworldtop-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.playworldtop-cookie-buttons .btn {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Page Content */
.playworldtop-page-wrapper {
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  padding: 3rem;
  margin: 8rem 0 2rem;
  box-shadow: var(--playworldtop-shadow);
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-page-title {
  color: var(--playworldtop-secondary);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.playworldtop-page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--playworldtop-gradient-primary);
  border-radius: 2px;
}

/* Contact Form */
.playworldtop-form-container {
  background: var(--playworldtop-background);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-form-container .form-control {
  background: white;
  border: 2px solid var(--playworldtop-border);
  color: var(--playworldtop-text);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.playworldtop-form-container .form-control:focus {
  background: white;
  border-color: var(--playworldtop-primary);
  color: var(--playworldtop-text);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.playworldtop-form-container label {
  font-weight: 600;
  color: var(--playworldtop-text);
  margin-bottom: 0.5rem;
}

.playworldtop-submit-btn {
  background: var(--playworldtop-gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.playworldtop-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

.playworldtop-contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.playworldtop-contact-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--playworldtop-background);
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
  transition: all 0.3s ease;
}

.playworldtop-contact-block:hover {
  transform: translateX(8px);
  border-color: var(--playworldtop-primary);
}

.playworldtop-contact-icon-circle {
  width: 60px;
  height: 60px;
  background: var(--playworldtop-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.playworldtop-contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--playworldtop-text);
}

.playworldtop-contact-text p {
  margin-bottom: 0;
  color: var(--playworldtop-text-light);
}

.playworldtop-contact-text a {
  color: var(--playworldtop-primary);
  font-weight: 600;
}

/* FAQ Blocks */
.playworldtop-faq-block {
  background: var(--playworldtop-background);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--playworldtop-border);
  transition: all 0.3s ease;
}

.playworldtop-faq-block:hover {
  border-color: var(--playworldtop-primary);
  transform: translateY(-4px);
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-faq-block h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.playworldtop-faq-icon {
  color: var(--playworldtop-primary);
}

.playworldtop-faq-block p {
  margin-bottom: 0;
}

/* Cookie Category Cards */
.playworldtop-cookie-category-card {
  background: var(--playworldtop-background);
  border: 1px solid var(--playworldtop-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.playworldtop-cookie-category-card:hover {
  border-color: var(--playworldtop-primary);
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-cookie-category-card h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playworldtop-cookie-category-card h4 i {
  color: var(--playworldtop-primary);
}

.playworldtop-cookie-category-card ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.playworldtop-cookie-category-card li {
  margin-bottom: 0.5rem;
  color: var(--playworldtop-text-light);
}

.playworldtop-third-party-info h4 {
  color: var(--playworldtop-secondary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Utility Classes */
.playworldtop-hidden {
  display: none !important;
}

.playworldtop-visible {
  display: block !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .playworldtop-hero {
    min-height: 70vh;
    margin-top: 70px;
  }

  .playworldtop-hero-graphic {
    display: none;
  }

  .playworldtop-page-wrapper {
    padding: 2rem;
    margin: 6rem 0 2rem;
  }
}

@media (max-width: 768px) {
  .playworldtop-hamburger {
    display: flex;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--playworldtop-primary);
  }

  .playworldtop-nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--playworldtop-shadow-lg);
    border-top: 2px solid var(--playworldtop-border);
  }

  .playworldtop-nav-menu.open {
    display: flex;
  }

  .playworldtop-nav-item {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .playworldtop-hero {
    margin-top: 70px;
    min-height: 60vh;
  }

  .playworldtop-hero-title {
    font-size: 2rem;
  }

  .playworldtop-hero-description {
    font-size: 1rem;
  }

  .playworldtop-casinos-grid {
    grid-template-columns: 1fr;
  }

  .playworldtop-cookie-popup {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }

  .playworldtop-page-wrapper {
    padding: 1.5rem;
  }

  .playworldtop-contact-block {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .playworldtop-navbar-container {
    padding: 0.75rem 1rem;
  }

  .playworldtop-logo-circle {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .playworldtop-site-name {
    font-size: 1.2rem;
  }

  .playworldtop-hero {
    margin-top: 60px;
  }

  .playworldtop-casino-item {
    padding: 1.5rem;
  }

  .playworldtop-page-wrapper {
    padding: 1rem;
  }
}


/* ================================
   REDESIGNED LEGAL PAGES STYLES
   ================================ */

/* Contact Page - Modern Form Design */
.playworldtop-contact-hero {
  background: var(--playworldtop-gradient-secondary);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  text-align: center;
}

.playworldtop-hero-content-center {
  max-width: 700px;
  margin: 0 auto;
}

.playworldtop-contact-main-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.playworldtop-contact-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.playworldtop-contact-section {
  padding: 4rem 0;
}

.playworldtop-form-card {
  background: var(--playworldtop-card-bg);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--playworldtop-shadow-lg);
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-form-header {
  margin-bottom: 2rem;
}

.playworldtop-form-heading {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.5rem;
}

.playworldtop-form-subtext {
  color: var(--playworldtop-text-light);
}

.playworldtop-contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.playworldtop-input-group {
  display: flex;
  flex-direction: column;
}

.playworldtop-input-label {
  font-weight: 600;
  color: var(--playworldtop-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playworldtop-input-label i {
  color: var(--playworldtop-primary);
}

.playworldtop-form-input,
.playworldtop-form-textarea {
  padding: 1rem;
  border: 2px solid var(--playworldtop-border);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.playworldtop-form-input:focus,
.playworldtop-form-textarea:focus {
  outline: none;
  border-color: var(--playworldtop-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.playworldtop-form-submit-btn {
  padding: 1.2rem 2rem;
  background: var(--playworldtop-gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--playworldtop-shadow-lg);
}

.playworldtop-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.playworldtop-alert-success {
  background: rgba(6, 214, 160, 0.1);
  border: 2px solid var(--playworldtop-success);
}

.playworldtop-alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid var(--playworldtop-error);
}

.playworldtop-alert-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.playworldtop-alert-success .playworldtop-alert-icon {
  color: var(--playworldtop-success);
}

.playworldtop-alert-error .playworldtop-alert-icon {
  color: var(--playworldtop-error);
}

.playworldtop-alert-content h4 {
  margin-bottom: 0.5rem;
}

.playworldtop-info-sidebar {
  position: sticky;
  top: 100px;
}

.playworldtop-sidebar-title {
  color: var(--playworldtop-secondary);
  margin-bottom: 1.5rem;
}

.playworldtop-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--playworldtop-card-bg);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--playworldtop-border);
  transition: all 0.3s ease;
}

.playworldtop-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-info-icon {
  width: 50px;
  height: 50px;
  background: var(--playworldtop-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.playworldtop-info-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--playworldtop-text);
}

.playworldtop-info-details p {
  margin-bottom: 0;
  color: var(--playworldtop-text-light);
  font-size: 0.95rem;
}

.playworldtop-help-box {
  background: var(--playworldtop-gradient-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.playworldtop-help-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.playworldtop-help-text h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.playworldtop-help-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.playworldtop-faq-section {
  padding: 4rem 0;
  background: var(--playworldtop-background);
}

.playworldtop-section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.playworldtop-section-description {
  color: var(--playworldtop-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.playworldtop-faq-card {
  background: var(--playworldtop-card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--playworldtop-border);
  transition: all 0.3s ease;
  height: 100%;
}

.playworldtop-faq-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--playworldtop-shadow-lg);
  border-color: var(--playworldtop-primary);
}

.playworldtop-faq-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--playworldtop-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.playworldtop-faq-card h3 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.playworldtop-faq-card p {
  margin-bottom: 0;
}

/* Privacy Policy - Sidebar Navigation Design */
.playworldtop-legal-hero {
  background: var(--playworldtop-gradient-primary);
  padding: 5rem 0 3rem;
  margin-top: 80px;
  text-align: center;
}

.playworldtop-legal-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.playworldtop-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.playworldtop-legal-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.playworldtop-legal-date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.playworldtop-legal-content {
  padding: 4rem 0;
}

.playworldtop-sidebar-nav {
  position: sticky;
  top: 100px;
  background: var(--playworldtop-card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-sidebar-nav-title {
  color: var(--playworldtop-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.playworldtop-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playworldtop-nav-list li {
  margin-bottom: 0.75rem;
}

.playworldtop-nav-list a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--playworldtop-text-light);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.playworldtop-nav-list a:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: var(--playworldtop-primary);
  color: var(--playworldtop-primary);
  padding-left: 1.5rem;
}

.playworldtop-content-block {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid var(--playworldtop-border);
  scroll-margin-top: 100px;
}

.playworldtop-block-icon {
  width: 60px;
  height: 60px;
  background: var(--playworldtop-gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.playworldtop-block-content h2 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-align: left;
}

.playworldtop-block-content h2::after {
  display: none;
}

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

.playworldtop-info-item {
  background: var(--playworldtop-background);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-info-item h4 {
  color: var(--playworldtop-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playworldtop-styled-list {
  list-style: none;
  padding: 0;
}

.playworldtop-styled-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--playworldtop-text-light);
  border-bottom: 1px solid var(--playworldtop-border);
}

.playworldtop-styled-list li:last-child {
  border-bottom: none;
}

.playworldtop-styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--playworldtop-primary);
  font-weight: bold;
}

.playworldtop-highlight-box {
  background: var(--playworldtop-gradient-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.playworldtop-highlight-box i {
  font-size: 2rem;
  flex-shrink: 0;
}

.playworldtop-share-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.playworldtop-scenario {
  background: var(--playworldtop-background);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
  text-align: center;
}

.playworldtop-scenario h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.playworldtop-security-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--playworldtop-background);
  border-radius: 8px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-security-feature i {
  color: var(--playworldtop-success);
  font-size: 1.2rem;
}

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

.playworldtop-right-card {
  background: var(--playworldtop-background);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
  text-align: center;
  transition: all 0.3s ease;
}

.playworldtop-right-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-right-number {
  width: 50px;
  height: 50px;
  background: var(--playworldtop-gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.playworldtop-right-card h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.75rem;
}

.playworldtop-age-warning {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid var(--playworldtop-error);
  border-radius: 16px;
  margin: 2rem 0;
}

.playworldtop-warning-icon {
  font-size: 3rem;
  color: var(--playworldtop-error);
  flex-shrink: 0;
}

.playworldtop-warning-content h3 {
  color: var(--playworldtop-error);
  margin-bottom: 0.75rem;
}

.playworldtop-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.playworldtop-contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--playworldtop-background);
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-contact-method i {
  font-size: 2rem;
  color: var(--playworldtop-primary);
}

.playworldtop-contact-method h4 {
  margin-bottom: 0.25rem;
  color: var(--playworldtop-secondary);
}

.playworldtop-cnil-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--playworldtop-primary);
  border-radius: 12px;
  margin-top: 2rem;
}

.playworldtop-cnil-box i {
  font-size: 2.5rem;
  color: var(--playworldtop-primary);
  flex-shrink: 0;
}

.playworldtop-cnil-box h4 {
  margin-bottom: 0.5rem;
  color: var(--playworldtop-primary);
}

/* Terms Page - Numbered Sections Design */
.playworldtop-terms-header {
  background: linear-gradient(135deg, var(--playworldtop-secondary) 0%, var(--playworldtop-secondary-dark) 100%);
  padding: 5rem 0 3rem;
  margin-top: 80px;
}

.playworldtop-terms-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.playworldtop-terms-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.playworldtop-terms-main-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.playworldtop-terms-update-info {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.playworldtop-terms-body {
  padding: 4rem 0;
}

.playworldtop-terms-notice {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--playworldtop-primary);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.playworldtop-terms-notice i {
  font-size: 2rem;
  color: var(--playworldtop-primary);
  flex-shrink: 0;
}

.playworldtop-terms-notice p {
  margin-bottom: 0;
}

.playworldtop-terms-section {
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-highlight-section {
  background: rgba(255, 107, 53, 0.05);
  border: 2px solid var(--playworldtop-primary);
}

.playworldtop-terms-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.playworldtop-terms-number {
  width: 60px;
  height: 60px;
  background: var(--playworldtop-gradient-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.playworldtop-terms-section h2 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0;
  font-size: 1.8rem;
  text-align: left;
}

.playworldtop-terms-section h2::after {
  display: none;
}

.playworldtop-age-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid var(--playworldtop-error);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.playworldtop-age-icon {
  font-size: 3rem;
  color: var(--playworldtop-error);
  flex-shrink: 0;
}

.playworldtop-age-content h3 {
  color: var(--playworldtop-error);
  margin-bottom: 0.75rem;
}

.playworldtop-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.playworldtop-service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--playworldtop-background);
  border-radius: 8px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-service-item i {
  color: var(--playworldtop-success);
  font-size: 1.2rem;
}

.playworldtop-responsibility-card {
  background: var(--playworldtop-background);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.playworldtop-responsibility-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-responsibility-card h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.playworldtop-responsibility-card i {
  color: var(--playworldtop-primary);
}

.playworldtop-affiliate-notice {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(26, 109, 170, 0.1);
  border: 2px solid var(--playworldtop-secondary);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.playworldtop-affiliate-notice i {
  font-size: 2.5rem;
  color: var(--playworldtop-secondary);
  flex-shrink: 0;
}

.playworldtop-affiliate-notice h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.5rem;
}

.playworldtop-plain-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.playworldtop-plain-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--playworldtop-text-light);
}

.playworldtop-plain-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: var(--playworldtop-primary);
  font-size: 1.5rem;
}

.playworldtop-warning-section {
  background: rgba(239, 68, 68, 0.05);
  border: 2px solid var(--playworldtop-error);
}

.playworldtop-warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.playworldtop-warning-item {
  background: var(--playworldtop-card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
  text-align: center;
}

.playworldtop-warning-item i {
  font-size: 2.5rem;
  color: var(--playworldtop-error);
  margin-bottom: 1rem;
}

.playworldtop-ip-restrictions {
  background: var(--playworldtop-background);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.playworldtop-ip-restrictions h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
}

.playworldtop-liability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.playworldtop-liability-item {
  padding: 0.75rem 1.5rem;
  background: var(--playworldtop-background);
  border-radius: 50px;
  border: 1px solid var(--playworldtop-border);
  color: var(--playworldtop-text-light);
}

.playworldtop-jurisdiction-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(26, 109, 170, 0.1);
  border: 2px solid var(--playworldtop-secondary);
  border-radius: 12px;
}

.playworldtop-jurisdiction-box i {
  font-size: 3rem;
  color: var(--playworldtop-secondary);
  flex-shrink: 0;
}

.playworldtop-terms-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.playworldtop-terms-contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--playworldtop-background);
  border-radius: 12px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-terms-contact-item i {
  font-size: 2rem;
  color: var(--playworldtop-primary);
  flex-shrink: 0;
}

.playworldtop-terms-contact-item strong {
  display: block;
  color: var(--playworldtop-secondary);
  margin-bottom: 0.25rem;
}

/* Cookies Page - Card Grid Design */
.playworldtop-cookies-banner {
  background: var(--playworldtop-gradient-primary);
  padding: 5rem 0 3rem;
  margin-top: 80px;
  text-align: center;
}

.playworldtop-cookies-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.playworldtop-cookies-icon-large {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
}

.playworldtop-cookies-main-heading {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.playworldtop-cookies-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.playworldtop-cookies-update-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-weight: 600;
}

.playworldtop-cookies-content {
  padding: 4rem 0;
}

.playworldtop-cookies-intro-section {
  margin-bottom: 4rem;
}

.playworldtop-cookies-section-title {
  color: var(--playworldtop-secondary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.playworldtop-cookies-large-text {
  font-size: 1.2rem;
  color: var(--playworldtop-text);
  margin-bottom: 1.5rem;
}

.playworldtop-cookie-types {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.playworldtop-cookie-type-badge {
  flex: 1;
  padding: 1.5rem;
  background: var(--playworldtop-gradient-secondary);
  color: white;
  border-radius: 12px;
  text-align: center;
}

.playworldtop-cookie-type-badge i {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.playworldtop-cookies-illustration {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  background: var(--playworldtop-background);
  border-radius: 16px;
  font-size: 3rem;
  color: var(--playworldtop-primary);
}

.playworldtop-cookies-categories {
  margin-bottom: 4rem;
}

.playworldtop-cookies-section-title-center {
  color: var(--playworldtop-secondary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.playworldtop-cookies-subtitle-center {
  color: var(--playworldtop-text-light);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
}

.playworldtop-cookies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.playworldtop-cookie-category-box {
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--playworldtop-border);
  transition: all 0.3s ease;
}

.playworldtop-cookie-category-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--playworldtop-shadow-lg);
  border-color: var(--playworldtop-primary);
}

.playworldtop-cookie-category-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.playworldtop-cookie-category-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1rem;
}

.playworldtop-icon-essential {
  background: var(--playworldtop-gradient-secondary);
}

.playworldtop-icon-analytics {
  background: var(--playworldtop-gradient-primary);
}

.playworldtop-icon-preference {
  background: linear-gradient(135deg, #06D6A0 0%, #1DB954 100%);
}

.playworldtop-icon-marketing {
  background: linear-gradient(135deg, #FFB627 0%, #FF6B35 100%);
}

.playworldtop-cookie-category-box h3 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0.75rem;
}

.playworldtop-cookie-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.playworldtop-badge-required {
  background: rgba(239, 68, 68, 0.2);
  color: var(--playworldtop-error);
}

.playworldtop-badge-optional {
  background: rgba(6, 214, 160, 0.2);
  color: var(--playworldtop-success);
}

.playworldtop-cookie-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.playworldtop-cookie-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--playworldtop-text-light);
}

.playworldtop-cookie-features li i {
  position: absolute;
  left: 0;
  color: var(--playworldtop-primary);
}

.playworldtop-cookies-third-party {
  background: var(--playworldtop-background);
  padding: 3rem;
  border-radius: 16px;
  margin-bottom: 4rem;
}

.playworldtop-third-party-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.playworldtop-third-party-header i {
  font-size: 2.5rem;
  color: var(--playworldtop-primary);
}

.playworldtop-third-party-header h2 {
  color: var(--playworldtop-secondary);
  margin-bottom: 0;
  text-align: center;
}

.playworldtop-third-party-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--playworldtop-text-light);
  margin-bottom: 2rem;
}

.playworldtop-third-party-card {
  background: var(--playworldtop-card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--playworldtop-border);
  transition: all 0.3s ease;
  height: 100%;
}

.playworldtop-third-party-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--playworldtop-shadow);
}

.playworldtop-third-party-logo {
  width: 70px;
  height: 70px;
  background: var(--playworldtop-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1rem;
}

.playworldtop-third-party-card h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
}

.playworldtop-cookies-management {
  margin-bottom: 4rem;
}

.playworldtop-management-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.playworldtop-management-option {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-management-icon {
  width: 80px;
  height: 80px;
  background: var(--playworldtop-gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.playworldtop-management-content h4 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
}

.playworldtop-management-content ul {
  padding-left: 1.5rem;
  margin-top: 0.75rem;
}

.playworldtop-management-content li {
  margin-bottom: 0.5rem;
  color: var(--playworldtop-text-light);
}

.playworldtop-cookies-warning {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 178, 39, 0.1);
  border: 2px solid var(--playworldtop-warning);
  border-radius: 12px;
  margin-top: 2rem;
}

.playworldtop-cookies-warning i {
  font-size: 2rem;
  color: var(--playworldtop-warning);
  flex-shrink: 0;
}

.playworldtop-cookies-updates {
  margin-bottom: 4rem;
}

.playworldtop-updates-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--playworldtop-card-bg);
  border-radius: 16px;
  border: 1px solid var(--playworldtop-border);
}

.playworldtop-updates-box i {
  font-size: 3rem;
  color: var(--playworldtop-primary);
  flex-shrink: 0;
}

.playworldtop-updates-box h3 {
  color: var(--playworldtop-secondary);
  margin-bottom: 1rem;
}

.playworldtop-cookies-contact-section {
  background: var(--playworldtop-gradient-secondary);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  color: white;
}

.playworldtop-contact-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.playworldtop-contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.playworldtop-contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.playworldtop-contact-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.playworldtop-btn-primary {
  background: white;
  color: var(--playworldtop-secondary);
}

.playworldtop-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--playworldtop-shadow-lg);
  color: var(--playworldtop-secondary);
}

.playworldtop-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.playworldtop-btn-secondary:hover {
  background: white;
  color: var(--playworldtop-secondary);
  transform: translateY(-3px);
}

.playworldtop-contact-details-inline {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
}

.playworldtop-contact-details-inline span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .playworldtop-sidebar-nav {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .playworldtop-content-block {
    flex-direction: column;
  }

  .playworldtop-block-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .playworldtop-info-sidebar {
    position: relative;
    top: 0;
  }

  .playworldtop-management-option {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .playworldtop-contact-hero,
  .playworldtop-legal-hero,
  .playworldtop-terms-header,
  .playworldtop-cookies-banner {
    padding: 4rem 0 2rem;
  }

  .playworldtop-form-card {
    padding: 2rem;
  }

  .playworldtop-cookie-types {
    flex-direction: column;
  }

  .playworldtop-contact-buttons {
    flex-direction: column;
  }

  .playworldtop-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .playworldtop-contact-details-inline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .playworldtop-terms-section-header {
    flex-direction: column;
    text-align: center;
  }

  .playworldtop-age-box,
  .playworldtop-affiliate-notice,
  .playworldtop-jurisdiction-box,
  .playworldtop-updates-box {
    flex-direction: column;
    text-align: center;
  }
}

