/* XYZ Theme Club - Clean Minimal Design
   Primary Color: #6C5CE7 */

/* Base Styles & Reset */
:root {
  --primary-color: #6C5CE7;
  --primary-dark: #5549c7;
  --primary-light: #8a7eee;
  --primary-opacity: rgba(108, 92, 231, 0.1);
  --secondary-color: #2a2a2a;
  --accent-color: #6C5CE7;
  --white: #ffffff;
  --light-gray: #f7f9fa;
  --medium-gray: #e0e0e0;
  --dark-gray: #2d2d2d;
  --text-color: #333333;
  --text-light: #666666;
  --border-radius: 8px;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --primary-color-rgb: 108, 92, 231;
}

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

/* Base background for entire site */
.xyz-theme-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-gray);
  overflow-x: hidden;
  position: relative;
}

.xyz-theme-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 66px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

/* Color Switcher */
.xyz-theme-color-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
  background-color: var(--white);
  padding: 8px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.xyz-theme-color-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

/* Updated Hero Section with Purple Gradient */
.xyz-theme-hero {
  position: relative;
  background: linear-gradient(135deg, #0f0728 0%, #1e0b41 100%);
  padding: 10px !important;
  overflow: hidden;
  min-height: 720px;
}

.xyz-theme-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.xyz-theme-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.xyz-theme-hero-text {
  position: relative;
  z-index: 5;
}

/* Remove the welcome badge */
.xyz-theme-hero-badge {
  display: none;
}

.xyz-theme-hero-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 700;
}

.xyz-theme-gradient-text {
  background: linear-gradient(135deg, #6C5CE7 0%, #a29bfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.xyz-theme-hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 800px;
}

.xyz-theme-stats {
  display: flex;
  margin: 30px 0;
  gap: 40px;
}

.xyz-theme-stat {
  position: relative;
}

.xyz-theme-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.xyz-theme-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.xyz-theme-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.xyz-theme-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.xyz-theme-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.xyz-theme-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(108, 92, 231, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #a29bfe;
}

.xyz-theme-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.xyz-theme-feature-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.xyz-theme-hero-illustration {
  position: relative;
  z-index: 1;
}

.xyz-theme-hero-shapes {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.xyz-theme-shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(72, 52, 212, 0.2) 100%);
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation: float 7s ease-in-out infinite;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation: float 9s ease-in-out infinite;
}

.shape-5 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 40%;
  animation: float 5s ease-in-out infinite;
}

.xyz-theme-hero-dashboard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.xyz-theme-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.xyz-theme-dashboard-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.xyz-theme-dashboard-controls {
  display: flex;
  gap: 8px;
}

.xyz-theme-dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.xyz-theme-dashboard-dot:first-child {
  background: #ffa500;
}

.xyz-theme-dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.xyz-theme-dashboard-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.xyz-theme-dashboard-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.xyz-theme-dashboard-icon {
  font-size: 24px;
}

.xyz-theme-dashboard-info {
  flex: 1;
}

.xyz-theme-dashboard-name {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.xyz-theme-dashboard-status {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .xyz-theme-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .xyz-theme-hero-title {
    font-size: 36px;
  }

  .xyz-theme-hero-illustration {
    order: -1;
  }
}

@media (max-width: 768px) {
  .xyz-theme-hero {
    padding: 60px 0;
  }

  .xyz-theme-stats {
    flex-direction: column;
    gap: 24px;
  }

  .xyz-theme-features-grid {
    grid-template-columns: 1fr;
  }

  .xyz-theme-hero-dashboard {
    padding: 16px;
  }
}

/* WordPress Themed Visual - SEO Optimized */
.xyz-theme-wp-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 5;
}

/* WordPress Logo & Elements */
.xyz-theme-wp-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.xyz-theme-wp-logo::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: #21759b;
}

.xyz-theme-wp-logo::after {
  content: 'W';
  position: relative;
  font-family: Georgia, serif;
  font-size: 90px;
  font-weight: bold;
  color: white;
  z-index: 2;
}

/* Theme & Plugin Elements */
.xyz-theme-wp-element {
  position: absolute;
  border-radius: 16px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.xyz-theme-wp-element-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.xyz-theme-wp-element-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--primary-color);
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.xyz-theme-wp-element-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
}

.xyz-theme-wp-element-description {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.xyz-theme-wp-element-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 10px;
}

/* Theme Card */
.xyz-theme-wp-theme {
  width: 160px;
  top: 15%;
  left: 10%;
  transform: rotate(-5deg);
}

.xyz-theme-wp-theme .xyz-theme-wp-element-icon {
  background: #21759b;
}

/* Plugin Card */
.xyz-theme-wp-plugin {
  width: 140px;
  top: 20%;
  right: 10%;
  transform: rotate(5deg);
}

.xyz-theme-wp-plugin .xyz-theme-wp-element-icon {
  background: #d54e21;
}

/* Code Card */
.xyz-theme-wp-code {
  width: 170px;
  bottom: 15%;
  left: 5%;
  transform: rotate(8deg);
}

.xyz-theme-wp-code .xyz-theme-wp-element-icon {
  background: #464646;
}

/* Developer Card */
.xyz-theme-wp-developer {
  width: 150px;
  bottom: 25%;
  right: 8%;
  transform: rotate(-8deg);
}

.xyz-theme-wp-developer .xyz-theme-wp-element-icon {
  background: #23282d;
}

/* Circular Stats Elements */
.xyz-theme-stat-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 6;
}

.xyz-theme-stat-circle-number {
  font-weight: 700;
  color: var(--primary-color);
}

.xyz-theme-stat-circle-label {
  font-size: 10px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.2;
}

.xyz-theme-stat-circle-1 {
  width: 90px;
  height: 90px;
  top: 65%;
  left: 20%;
}

.xyz-theme-stat-circle-1 .xyz-theme-stat-circle-number {
  font-size: 22px;
}

.xyz-theme-stat-circle-2 {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 40%;
}

.xyz-theme-stat-circle-2 .xyz-theme-stat-circle-number {
  font-size: 18px;
}

.xyz-theme-stat-circle-3 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: 25%;
}

.xyz-theme-stat-circle-3 .xyz-theme-stat-circle-number {
  font-size: 20px;
}

/* Connecting Lines */
.xyz-theme-connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.xyz-theme-connecting-line {
  position: absolute;
  background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.2), rgba(var(--primary-color-rgb), 0));
  height: 2px;
}

.xyz-theme-connecting-line-1 {
  width: 80px;
  top: 30%;
  left: 25%;
  transform: rotate(45deg);
}

.xyz-theme-connecting-line-2 {
  width: 100px;
  top: 25%;
  right: 20%;
  transform: rotate(-30deg);
}

.xyz-theme-connecting-line-3 {
  width: 120px;
  bottom: 40%;
  left: 15%;
  transform: rotate(-60deg);
}

.xyz-theme-connecting-line-4 {
  width: 90px;
  bottom: 30%;
  right: 20%;
  transform: rotate(30deg);
}

/* Background Elements */
.xyz-theme-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-opacity);
  z-index: 3;
}

.xyz-theme-bg-circle-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
  opacity: 0.4;
}

.xyz-theme-bg-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: -30px;
  opacity: 0.3;
}

/* Futuristic Tech Dashboard - SEO Optimized */
.xyz-theme-monitor {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: #111827;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(255, 255, 255, 0.1),
              0 0 30px rgba(10, 37, 64, 0.2) inset;
  z-index: 5;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dashboard Header */
.xyz-theme-dashboard-header {
  position: relative;
  background: linear-gradient(to right, #111827, #1f2937);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.xyz-theme-dashboard-title {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.xyz-theme-dashboard-logo {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}

.xyz-theme-dashboard-logo::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
}

.xyz-theme-dashboard-controls {
  display: flex;
  gap: 8px;
}

.xyz-theme-dashboard-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.xyz-theme-dashboard-btn.red {
  background: #ff5f57;
}

.xyz-theme-dashboard-btn.yellow {
  background: #febc2e;
}

.xyz-theme-dashboard-btn.green {
  background: #28c840;
}

/* Dashboard Content */
.xyz-theme-dashboard-content {
  background: #1e1e2d;
  background-image: radial-gradient(rgba(231, 76, 60, 0.1) 2px, transparent 2px);
  background-size: 20px 20px;
  padding: 20px;
  min-height: 280px;
}

.xyz-theme-dashboard-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* Main Platform Display */
.xyz-theme-platform-main {
  flex: 2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.xyz-theme-platform-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  border-radius: 12px 12px 0 0;
}

#platform-name-display {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xyz-theme-platform-stats {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.xyz-theme-platform-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 8px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.xyz-theme-platform-stat-number {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-light);
}

.xyz-theme-platform-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* Platform Cards */
.xyz-theme-platform-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.xyz-theme-platform-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.xyz-theme-platform-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 10px;
}

.xyz-theme-platform-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.xyz-theme-new-badge {
  display: inline-block;
  font-size: 8px;
  padding: 2px 4px;
  border-radius: 3px;
  background: var(--primary-color);
  color: white;
  margin-left: 4px;
  vertical-align: middle;
}

/* Side Column */
.xyz-theme-side-widgets {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.xyz-theme-widget {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.xyz-theme-widget-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.xyz-theme-widget-icon {
  width: 18px;
  height: 18px;
  background: var(--primary-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.xyz-theme-language-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xyz-theme-language-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.xyz-theme-language-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  width: 60px;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
}

.xyz-theme-language-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary-color);
}

.xyz-theme-updates-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.xyz-theme-update-item {
  display: flex;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 8px;
  position: relative;
}

.xyz-theme-update-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Status Bar */
.xyz-theme-dashboard-footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.xyz-theme-status-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.xyz-theme-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Tablet & Mobile */
.xyz-theme-tablet {
  position: absolute;
  right: 15%;
  bottom: 15%;
  width: 120px;
  height: 160px;
  background: white;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 4;
  transform: rotate(5deg);
}

.xyz-theme-tablet-screen {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0,15.5 L20,15.5" stroke="%23ddd" stroke-width="1"/><path d="M0,10.5 L20,10.5" stroke="%23ddd" stroke-width="1"/><path d="M0,5.5 L20,5.5" stroke="%23ddd" stroke-width="1"/></svg>');
}

.xyz-theme-tablet-screen::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 2px;
}

.xyz-theme-mobile {
  position: absolute;
  left: 20%;
  bottom: 20%;
  width: 70px;
  height: 140px;
  background: white;
  border-radius: 15px;
  padding: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 4;
  transform: rotate(-8deg);
}

.xyz-theme-mobile-screen {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M0,8.5 L16,8.5" stroke="%23ddd" stroke-width="1"/><path d="M0,12.5 L16,12.5" stroke="%23ddd" stroke-width="1"/><path d="M0,4.5 L16,4.5" stroke="%23ddd" stroke-width="1"/></svg>');
}

.xyz-theme-mobile-screen::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 2px;
}

.xyz-theme-code-bubble {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.xyz-theme-code-bubble.html {
  width: 100px;
  height: 100px;
  background: #E34C26;
  top: 15%;
  left: 25%;
}

.xyz-theme-code-bubble.css {
  width: 90px;
  height: 90px;
  background: #264DE4;
  top: 20%;
  right: 22%;
}

.xyz-theme-code-bubble.js {
  width: 80px;
  height: 80px;
  background: #F0DB4F;
  color: #323330;
  top: 10%;
  right: 35%;
}

.xyz-theme-code-bubble.php {
  width: 110px;
  height: 110px;
  background: #787CB5;
  top: 35%;
  left: 30%;
}

.xyz-theme-gear {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.xyz-theme-gear::before, .xyz-theme-gear::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  background: var(--primary-color);
  border-radius: 50%;
}

.xyz-theme-gear::before {
  width: 80%;
  height: 80%;
  background: var(--primary-light);
}

.xyz-theme-gear::after {
  width: 40%;
  height: 40%;
  background: var(--white);
}

.xyz-theme-gear-large {
  width: 70px;
  height: 70px;
  top: 15%;
  left: 15%;
}

.xyz-theme-gear-small {
  width: 40px;
  height: 40px;
  top: 25%;
  left: 5%;
}

.xyz-theme-gear-medium {
  width: 55px;
  height: 55px;
  bottom: 30%;
  right: 10%;
}

.xyz-theme-tech-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-opacity);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 18px;
  color: var(--primary-dark);
}

.xyz-theme-tech-icon.brackets {
  top: 45%;
  right: 15%;
  transform: rotate(-15deg);
}

.xyz-theme-tech-icon.upload {
  top: 10%;
  right: 10%;
}

.xyz-theme-tech-icon.check {
  bottom: 40%;
  left: 10%;
}

.xyz-theme-tech-icon.code {
  bottom: 20%;
  right: 40%;
}

/* Updated Pricing Section */
.xyz-theme-pricing {
  padding: 80px 0;
  background-color: var(--light-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.xyz-theme-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 0% 0%, var(--primary-opacity) 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, var(--primary-opacity) 0%, transparent 30%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, var(--primary-opacity) 20px, var(--primary-opacity) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, var(--primary-opacity) 20px, var(--primary-opacity) 21px);
  opacity: 0.7;
  z-index: 0;
}

.xyz-theme-pricing .xyz-theme-container {
  position: relative;
  z-index: 1;
}

.xyz-theme-pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.xyz-theme-pricing-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.xyz-theme-pricing-title .xyz-theme-highlight {
  color: var(--primary-color);
}

.xyz-theme-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
}

.xyz-theme-pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--medium-gray);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.xyz-theme-pricing-card.xyz-theme-featured {
  background: var(--dark-gray);
  color: var(--white);
  border-color: var(--dark-gray);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.xyz-theme-pricing-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.xyz-theme-pricing-description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 60px;
}

.xyz-theme-pricing-card.xyz-theme-featured .xyz-theme-pricing-description {
  color: #999;
}

.xyz-theme-pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}

.xyz-theme-pricing-card.xyz-theme-featured .xyz-theme-pricing-price {
  color: var(--white);
}

.xyz-theme-pricing-price-period {
  font-size: 14px;
  font-weight: normal;
  color: var(--text-light);
  margin-left: 4px;
}

.xyz-theme-pricing-card.xyz-theme-featured .xyz-theme-pricing-price-period {
  color: #999;
}

.xyz-theme-pricing-features {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
}

.xyz-theme-pricing-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.xyz-theme-pricing-check {
  color: var(--primary-color);
  margin-right: 8px;
  flex-shrink: 0;
  font-weight: bold;
}

.xyz-theme-pricing-card.xyz-theme-featured .xyz-theme-pricing-check {
  color: var(--primary-light);
}

.xyz-theme-pricing-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-top: auto;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.xyz-theme-pricing-button:hover {
  background: var(--primary-dark);
}

.xyz-theme-pricing-button-icon {
  transition: var(--transition);
}

.xyz-theme-pricing-button:hover .xyz-theme-pricing-button-icon {
  transform: translateX(4px);
}

.xyz-theme-pricing-card.xyz-theme-featured .xyz-theme-pricing-button {
  background: var(--white);
  color: var(--dark-gray);
}

.xyz-theme-pricing-card.xyz-theme-featured .xyz-theme-pricing-button:hover {
  background: #f0f0f0;
}

/* Updated Why Choose Section */
.xyz-theme-why-choose {
  position: relative;
  background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
  padding: 100px 0;
  overflow: hidden;
}

.xyz-theme-why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234a6cf7' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: 0;
}

.xyz-theme-why-choose .xyz-theme-container {
  position: relative;
  z-index: 1;
}

.xyz-theme-why-choose-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.xyz-theme-why-choose-subtitle {
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.xyz-theme-why-choose-title .xyz-theme-highlight {
  color: var(--primary-color);
}

.xyz-theme-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .xyz-theme-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .xyz-theme-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.xyz-theme-benefit-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid var(--medium-gray);
  text-align: center;
}

.xyz-theme-benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background: var(--primary-opacity);
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.xyz-theme-benefit-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.xyz-theme-benefit-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* Updated Plugin Features Section with enhanced modern background */
.xyz-theme-plugin-features {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.xyz-theme-plugin-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-gray);
  background-image: 
    radial-gradient(circle at 20% 20%, var(--primary-opacity) 0%, transparent 25%),
    radial-gradient(circle at 80% 80%, var(--primary-opacity) 0%, transparent 25%);
  opacity: 0.8;
  z-index: 0;
}

.xyz-theme-plugin-features::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, var(--primary-opacity) 1px, transparent 1px),
    linear-gradient(0deg, var(--primary-opacity) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.7;
  z-index: 0;
}

.xyz-theme-plugin-features .xyz-theme-why-choose-title {
  font-size: 42px;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
  color: var(--primary-dark);
  font-weight: 700;
}

.xyz-theme-plugin-features .xyz-theme-why-choose-subtitle {
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.xyz-theme-plugin-features .xyz-theme-container {
  position: relative;
  z-index: 1;
}

.xyz-theme-plugin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.xyz-theme-plugin-mockup {
  position: relative;
  width: 100%;
  height: 400px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--medium-gray);
}

.xyz-theme-plugin-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-opacity), rgba(255,255,255,0.8));
  transition: background 0.3s ease;
}

.xyz-theme-plugin-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  margin: 0 auto;
  max-width: 1200px;
}

.xyz-theme-plugin-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.xyz-theme-plugin-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.xyz-theme-plugin-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.xyz-theme-plugin-feature-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.xyz-theme-plugin-feature-content p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}

.xyz-theme-plugin-cta {
  margin-top: 40px;
  text-align: center;
}

.xyz-theme-plugin-cta p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Updated FAQ Section with enhanced background */
.xyz-theme-faq {
  padding: 80px 0;
  background: #f2f7f7; 
  position: relative;
  overflow: hidden;
}

.xyz-theme-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(135deg, var(--primary-opacity) 0%, transparent 50%),
    linear-gradient(225deg, var(--primary-opacity) 0%, transparent 50%);
  opacity: 0.7;
  z-index: 0;
}

.xyz-theme-faq::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, var(--primary-opacity) 0, var(--primary-opacity) 1px, transparent 1px, transparent 15px),
    repeating-linear-gradient(135deg, var(--primary-opacity) 0, var(--primary-opacity) 1px, transparent 1px, transparent 15px);
  opacity: 0.5;
  z-index: 0;
}

.xyz-theme-faq .xyz-theme-container {
  position: relative;
  z-index: 1;
}

/* Two-column layout */
.xyz-theme-faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Left column - FAQ Questions */
.xyz-theme-faq-left-column {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.xyz-theme-faq-header {
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
  background: var(--white);
}

.xyz-theme-faq-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
}

.xyz-theme-faq-title::before {
  content: "";
  display: none;
}

.xyz-theme-faq-items {
  padding: 0;
}

.xyz-theme-faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}

.xyz-theme-faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.xyz-theme-faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}

.xyz-theme-faq-question:hover {
  color: var(--primary-color);
}

.xyz-theme-faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 50%;
}

.xyz-theme-faq-answer {
  display: none;
  padding: 20px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.xyz-theme-faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.xyz-theme-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.xyz-theme-faq-question:hover {
  background: #f0f0f0;
}

/* Show answer when the question is targeted */
.xyz-theme-faq-answer:target {
  display: block;
}

/* Rotate the plus icon when answer is shown */
.xyz-theme-faq-answer:target ~ .xyz-theme-faq-question .xyz-theme-icon-placeholder {
  transform: rotate(45deg);
}

/* Ensure the question stays on top */
.xyz-theme-faq-question {
  position: relative;
  z-index: 1;
}

/* Add smooth transition for the icon */
.xyz-theme-icon-placeholder {
  transition: transform 0.3s ease;
}

/* Right column - Membership Offer */
.xyz-theme-faq-right-column {
  display: flex;
  flex-direction: column;
}

.xyz-theme-membership-offer {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.xyz-theme-membership-badge {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px;
  margin: 25px auto 0;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="20" cy="40" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="40" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="20" cy="60" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="60" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="60" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="60" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="20" cy="80" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="60" cy="80" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.2)"/></svg>');
  background-size: 40px 40px;
}

.xyz-theme-membership-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.xyz-theme-membership-discount {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  text-align: center;
}

.xyz-theme-membership-limited {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 30px;
  text-align: center;
}

.xyz-theme-membership-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  width: 100%;
}

.xyz-theme-membership-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.5;
}

.xyz-theme-membership-check {
  color: var(--primary-color);
  margin-right: 10px;
  font-weight: bold;
  font-size: 18px;
}

.xyz-theme-membership-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.xyz-theme-membership-button:hover {
  background: var(--primary-dark);
}

.xyz-theme-btn-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.xyz-theme-membership-button:hover .xyz-theme-btn-arrow {
  transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .xyz-theme-faq-columns {
    grid-template-columns: 1fr;
  }
  
  .xyz-theme-faq-right-column {
    margin-top: 30px;
  }
}

/* Additional Animations for JavaScript Functionality */
.xyz-theme-fade-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .xyz-theme-plugin-grid {
    grid-template-columns: 1fr;
  }
  
  .xyz-theme-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .xyz-theme-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .xyz-theme-hero-title {
    font-size: 36px;
  }
  
  .xyz-theme-hero-illustration {
    order: -1;
  }
  
  .xyz-theme-stats {
    justify-content: center;
  }
  
  .xyz-theme-features-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .xyz-theme-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .xyz-theme-hero-title {
    font-size: 36px;
  }
  
  .xyz-theme-features-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  
  .xyz-theme-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .xyz-theme-faq-columns {
    grid-template-columns: 1fr;
  }
  
  .xyz-theme-faq-right-column {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .xyz-theme-hero {
    padding: 60px 0;
  }
}

/* Make sure all containers are above the backgrounds */
.xyz-theme-hero .xyz-theme-container,
.xyz-theme-pricing .xyz-theme-container,
.xyz-theme-why-choose .xyz-theme-container,
.xyz-theme-plugin-features .xyz-theme-container,
.xyz-theme-faq .xyz-theme-container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .xyz-theme-plugin-features-grid {
    grid-template-columns: 1fr;
  }
}

.xyz-theme-plugin-features .xyz-theme-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.xyz-theme-plugin-features-grid {
  margin-top: 40px;
}

.xyz-theme-btn-arrow {
  display: inline-block;
  margin-left: 8px;
}

a:hover .xyz-theme-btn-arrow {
  transform: translateX(5px);
}

.xyz-theme-btn-primary {
  background: linear-gradient(135deg, #6C5CE7 0%, #5549c7 100%);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
  position: relative;
  overflow: hidden;
}

.xyz-theme-btn-primary::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.7s ease;
}

.xyz-theme-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.xyz-theme-btn-primary:hover::before {
  left: 100%;
}

.xyz-theme-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(108, 92, 231, 0.5);
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.xyz-theme-btn-secondary:hover {
  background: rgba(108, 92, 231, 0.1);
  border-color: rgba(108, 92, 231, 0.8);
  transform: translateY(-3px);
}

/* Section Titles */
.xyz-theme-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.xyz-theme-section-title h2 {
  font-size: 2.5rem;
  margin: 10px 0;
  color: var(--primary-dark);
}

.xyz-theme-section-title p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.xyz-theme-subtitle {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Buttons */
.xyz-theme-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.xyz-theme-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.xyz-theme-btn-arrow::after {
  content: '→';
  margin-left: 8px;
}

/* Membership Card Styles */
.xyz-theme-membership-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.xyz-theme-membership-card:hover {
    transform: translateY(-5px);
}

.xyz-theme-membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.xyz-theme-membership-card-header {
    padding: 24px;
    background: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xyz-theme-membership-card-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.xyz-theme-membership-card-price {
    text-align: right;
}

.xyz-theme-membership-card-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.xyz-theme-membership-card-period {
    font-size: 14px;
    color: var(--text-light);
}

.xyz-theme-membership-card-body {
    padding: 24px;
}

.xyz-theme-membership-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.xyz-theme-membership-card-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.xyz-theme-membership-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xyz-theme-membership-card-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: 14px;
}

.xyz-theme-membership-card-check {
    background: var(--primary-opacity);
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}

.xyz-theme-membership-card-footer {
    padding: 24px;
    border-top: 1px solid var(--medium-gray);
}

.xyz-theme-membership-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.xyz-theme-membership-card-button:hover {
    background: var(--primary-dark);
}

.xyz-theme-membership-card-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.xyz-theme-membership-card-button:hover .xyz-theme-membership-card-arrow {
    transform: translateX(4px);
}

/* Web Technology Icons */
.xyz-theme-dashboard-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.xyz-theme-dashboard-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  opacity: 0.2;
  z-index: 0;
}

.xyz-theme-dashboard-card-icon.wordpress::before { background-color: #21759B; }
.xyz-theme-dashboard-card-icon.laravel::before { background-color: #FF2D20; }
.xyz-theme-dashboard-card-icon.html::before { background-color: #E34F26; }
.xyz-theme-dashboard-card-icon.css::before { background-color: #1572B6; }
.xyz-theme-dashboard-card-icon.php::before { background-color: #777BB4; }
.xyz-theme-dashboard-card-icon.joomla::before { background-color: #5091CD; }
.xyz-theme-dashboard-card-icon.magento::before { background-color: #F26322; }
.xyz-theme-dashboard-card-icon.javascript::before { background-color: #F7DF1E; }

.xyz-theme-dashboard-card-icon svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.xyz-theme-dashboard-card:hover .xyz-theme-dashboard-card-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
}

.xyz-theme-dashboard-card:hover .xyz-theme-dashboard-card-icon svg {
  transform: rotate(5deg);
}

.xyz-theme-dashboard-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.xyz-theme-dashboard-card-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

/* Tablet and shape adjustments for technology icons */
.xyz-theme-tablet-frame {
  width: 100%;
  background: rgba(18, 18, 28, 0.85);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 30px rgba(108, 92, 231, 0.2);
  backdrop-filter: blur(20px);
  transform: rotateX(5deg) rotateY(-8deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.xyz-theme-tablet-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1,1 L19,1 L19,19 L1,19 L1,1 Z' stroke='rgba(108, 92, 231, 0.05)' fill='none' /%3E%3C/svg%3E");
  background-size: auto, auto, 20px 20px;
  z-index: -1;
}

.xyz-theme-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ensure benefit icons display correctly */
.xyz-theme-benefit-icon svg {
  width: 24px;
  height: 24px;
}

/* Plugin feature icon fixes */
.xyz-theme-plugin-feature-icon svg {
  width: 24px;
  height: 24px;
}

/* Tech Hub Layout - Updated for 5 technology nodes */
.xyz-theme-tech-hub {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.xyz-theme-hub-center {
    position: absolute;
    z-index: 10;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.xyz-theme-tech-icon-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
}

.xyz-theme-tech-icon-main img {
    max-width: 80%;
    height: auto;
}

.xyz-theme-hub-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.xyz-theme-connection {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform-origin: 0 0;
    z-index: 1;
}

/* Position for 4 nodes in a perfect cross */
.xyz-theme-connection.line-1 {
    transform: rotate(0deg);
}

.xyz-theme-connection.line-2 {
    transform: rotate(90deg);
}

.xyz-theme-connection.line-3 {
    transform: rotate(180deg);
}

.xyz-theme-connection.line-4 {
    transform: rotate(270deg);
}

.xyz-theme-tech-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.xyz-theme-tech-node {
    position: absolute;
    width: 100px;
    height: 100px;
}

.xyz-theme-tech-icon {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.xyz-theme-tech-icon img {
    max-width: 60%;
    height: auto;
}

.xyz-theme-tech-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Position nodes in perfect cross formation */
.xyz-theme-tech-node.node-1 {
    top: 20px;  /* North */
    left: 50%;
    transform: translateX(-50%);
}

.xyz-theme-tech-node.node-2 {
    right: 20px;  /* East */
    top: 50%;
    transform: translateY(-50%);
}

.xyz-theme-tech-node.node-3 {
    bottom: 20px;  /* South */
    left: 50%;
    transform: translateX(-50%);
}

.xyz-theme-tech-node.node-4 {
    left: 20px;  /* West */
    top: 50%;
    transform: translateY(-50%);
}

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

@media (max-width: 768px) {
    .xyz-theme-section-heading {
        font-size: 28px;
    }
    
    .xyz-theme-hero-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .xyz-theme-btn-primary, 
    .xyz-theme-btn-secondary {
        padding: 12px 20px;
        min-width: 140px;
    }
    
    .xyz-theme-tech-hub {
        transform: scale(0.8);
    }
    
    .xyz-theme-stats {
        gap: 20px;
    }
    
    .xyz-theme-stat-number {
        font-size: 28px;
    }
}

/* Add consistent section heading style */
.xyz-theme-section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    color: #fff;
}

.xyz-theme-section-heading .xyz-theme-highlight,
.xyz-theme-section-heading .xyz-theme-gradient-text {
    color: #4a6cf7;
    position: relative;
}

/* Hero section stats improvements */
.xyz-theme-stats {
    display: flex;
    margin: 30px 0;
    gap: 40px;
}

.xyz-theme-stat {
    position: relative;
}

.xyz-theme-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.xyz-theme-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Improved button alignment and style */
.xyz-theme-hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.xyz-theme-btn-primary, 
.xyz-theme-btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 160px;
}

.xyz-theme-btn-primary {
    background: linear-gradient(to right, #4a6cf7, #5e78ff);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px -10px rgba(74, 108, 247, 0.5);
}

.xyz-theme-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(74, 108, 247, 0.6);
}

.xyz-theme-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.xyz-theme-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Modern buttons for pricing section */
.xyz-theme-modern-button {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    background: linear-gradient(to right, #4a6cf7, #5e78ff);
    color: #fff;
    border: none;
    box-shadow: 0 8px 15px rgba(74, 108, 247, 0.3);
    margin-top: 20px;
}

.xyz-theme-modern-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(74, 108, 247, 0.4);
}

.xyz-theme-modern-button.featured {
    background: linear-gradient(to right, #ef6b6b, #ff7d7d);
    box-shadow: 0 8px 15px rgba(239, 107, 107, 0.3);
}

.xyz-theme-modern-button.featured:hover {
    box-shadow: 0 12px 20px rgba(239, 107, 107, 0.4);
}

.xyz-theme-button-icon {
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.xyz-theme-modern-button:hover .xyz-theme-button-icon {
    transform: translateX(4px);
}

/* Hero section heading style */
.xyz-theme-hero-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    color: #fff;
}

.xyz-theme-hero-heading .xyz-theme-gradient-text {
    background: linear-gradient(135deg, #6C5CE7 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Regular section heading style */
.xyz-theme-section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    color: #333;
}

.xyz-theme-section-heading .xyz-theme-highlight {
    color: #4a6cf7;
    position: relative;
}

@media (max-width: 768px) {
    .xyz-theme-hero-heading {
        font-size: 32px;
    }
    
    .xyz-theme-section-heading {
        font-size: 28px;
    }
}