:root {
    --primary-color: #00f5d4; /* Bright Teal */
    --secondary-color: #9b5de5; /* Purple */
    --background-color: #0a0a1f; /* Deep Navy/Purple */
    --surface-color: rgba(22, 22, 42, 0.5); /* Semi-transparent surface */
    --surface-color-hover: rgba(28, 28, 52, 0.7);
    --text-color: #e0e0e0;
    --text-color-dark: #a0a0b0;
    --font-family: 'Poppins', sans-serif;
    --glow-color: rgba(0, 245, 212, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}

.hero-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px var(--glow-color));
    transition: transform 0.3s ease;
}

.hero-icon:hover {
    transform: scale(1.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    background-image: linear-gradient(180deg, var(--background-color) 0%, #0f0c29 50%, #0a0a1f 100%);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#real-content {
    position: relative;
    z-index: 1;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 5%;
    background: rgba(10, 10, 31, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, padding 0.3s ease;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 8px var(--glow-color);
    position: relative;
    display: inline-block;
}

.logo-letter {
    display: inline-block;
    animation: logo-flicker 5s infinite;
}

.logo-letter:nth-child(1) { animation-delay: 0.1s; }
.logo-letter:nth-child(2) { animation-delay: 0.7s; }
.logo-letter:nth-child(3) { animation-delay: 0.3s; }
.logo-letter:nth-child(4) { animation-delay: 1.1s; }
.logo-letter:nth-child(5) { animation-delay: 0.5s; }
.logo-letter:nth-child(6) { animation-delay: 0.9s; }

@keyframes logo-flicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px var(--glow-color);
    }
    5% {
        opacity: 0.8;
        text-shadow: 0 0 5px var(--glow-color);
    }
    10% {
        opacity: 1;
        text-shadow: 0 0 12px var(--glow-color);
    }
    15% {
        opacity: 0.9;
        text-shadow: 0 0 7px var(--glow-color);
    }
    25% {
        opacity: 1;
        text-shadow: 0 0 10px var(--glow-color);
    }
    50% {
        opacity: 0.7;
        text-shadow: 0 0 15px var(--glow-color);
    }
    75% {
        opacity: 1;
        text-shadow: 0 0 10px var(--glow-color);
    }
    80% {
        opacity: 0.9;
        text-shadow: 0 0 7px var(--glow-color);
    }
    90% {
        opacity: 1;
        text-shadow: 0 0 12px var(--glow-color);
    }
    95% {
        opacity: 0.8;
        text-shadow: 0 0 5px var(--glow-color);
    }
}

.logo:hover .logo-letter {
    animation-play-state: paused;
    text-shadow: 0 0 16px var(--glow-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 2.5rem;
}

.main-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-title {
    position: relative;
    user-select: none;
    margin-bottom: 2rem;
}

.main-title h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 700;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    color: var(--text-color);
}

.main-title h1:first-child {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color-dark);
    text-stroke: 1px var(--text-color-dark);
    position: relative;
    animation: ghost-outline 4s ease-in-out infinite;
}

@keyframes ghost-outline {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

.main-title h1:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: rgba(220, 240, 255, 0.9);
    text-shadow: 0 0 25px rgba(150, 200, 255, 0.8);
    animation: ghost-effect 3.5s ease-in-out infinite;
}

@keyframes ghost-effect {
  0%, 100% {
    opacity: 0.4;
    filter: blur(2px);
    transform: translateY(2px) scaleY(1) skewX(0deg) rotate(0deg);
    text-shadow: 0 0 10px rgba(150, 200, 255, 0.8), 0 0 20px rgba(150, 200, 255, 0.6);
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      85% 100%,
      75% 95%,
      50% 100%,
      25% 95%,
      15% 100%,
      0 100%
    );
  }
  10% {
    opacity: 0.5;
    filter: blur(1px);
    transform: translateY(1px) scaleY(1.02) skewX(1deg) rotate(0.5deg);
    clip-path: polygon(
      5% 0,
      95% 0,
      100% 100%,
      80% 95%,
      60% 100%,
      40% 95%,
      20% 100%,
      0 95%
    );
  }
  15% {
    opacity: 0.3;
    filter: blur(3px);
  }
  25% {
    opacity: 0.8;
    filter: blur(1px);
    transform: translateY(-5px) scaleY(0.9) skewX(-2deg) rotate(-1deg);
    text-shadow: 0 0 15px rgba(150, 200, 255, 0.8), 0 0 30px rgba(150, 200, 255, 0.6);
    clip-path: polygon(
      0 5%,
      100% 0,
      95% 95%,
      75% 100%,
      50% 95%,
      25% 100%,
      5% 95%
    );
  }
  27% {
    opacity: 0.6;
    clip-path: polygon(
      5% 5%,
      95% 0,
      100% 90%,
      80% 95%,
      50% 90%,
      20% 95%,
      0 90%
    );
  }
  30% {
    opacity: 0.7;
    filter: blur(3px);
    transform: translateY(-3px) scaleY(0.9) skewX(-1deg) rotate(-0.5deg);
  }
  40% {
    opacity: 0.9;
    filter: blur(1px);
    clip-path: polygon(
      0 0,
      100% 5%,
      95% 100%,
      70% 95%,
      50% 100%,
      30% 95%,
      5% 100%
    );
  }
  45% {
    opacity: 0.7;
    filter: blur(2px);
  }
  50% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(5px) translateY(0) scaleY(1) skewX(0deg) rotate(0deg);
    text-shadow: 0 0 20px rgba(150, 200, 255, 0.8), 0 0 40px rgba(150, 200, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.7);
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      90% 95%,
      70% 100%,
      50% 95%,
      30% 100%,
      10% 95%,
      0 100%
    );
  }
  60% {
    opacity: 0.9;
    filter: blur(1px);
    transform: translateX(3px) translateY(2px) scaleY(0.98) skewX(1deg) rotate(0.5deg);
    clip-path: polygon(
      5% 5%,
      95% 0,
      100% 95%,
      80% 100%,
      60% 95%,
      40% 100%,
      20% 95%,
      0 100%
    );
  }
  65% {
    opacity: 0.7;
    filter: blur(2px);
  }
  75% {
    opacity: 0.8;
    filter: blur(1px);
    transform: translateX(-5px) translateY(5px) scaleY(0.9) skewX(2deg) rotate(1deg);
    text-shadow: 0 0 15px rgba(150, 200, 255, 0.8), 0 0 30px rgba(150, 200, 255, 0.6);
    clip-path: polygon(
      0 5%,
      100% 0,
      95% 100%,
      75% 95%,
      50% 100%,
      25% 95%,
      5% 100%
    );
  }
  77% {
    opacity: 0.6;
    clip-path: polygon(
      5% 0,
      95% 5%,
      100% 90%,
      80% 95%,
      50% 90%,
      20% 95%,
      0 90%
    );
  }
  80% {
    opacity: 0.7;
    filter: blur(3px);
    transform: translateX(-3px) translateY(3px) scaleY(0.9) skewX(1deg) rotate(0.5deg);
  }
  90% {
    opacity: 0.5;
    filter: blur(1px);
    transform: translateY(1px) scaleY(1.02) skewX(-1deg) rotate(-0.5deg);
    clip-path: polygon(
      0 0,
      100% 5%,
      95% 95%,
      70% 100%,
      50% 95%,
      30% 100%,
      5% 95%
    );
  }
  95% {
    opacity: 0.3;
    filter: blur(3px);
  }
}

h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--glow-color);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-color-dark);
    max-width: 700px;
    margin: 2rem auto 4rem;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-color-dark);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--surface-color);
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Header height */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 245, 212, 0.1),
        rgba(155, 93, 229, 0.1)
    );
    animation: gradient 15s ease infinite;
    z-index: -1;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

.feature-card {
    background: rgba(22, 22, 42, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(22, 22, 42, 0.5);
    box-shadow: 0 8px 32px rgba(0, 245, 212, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.why-wraith-section {
    padding: 7rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(155, 93, 229, 0.05) 50%, transparent 100%);
}

.why-wraith-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.why-wraith-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.why-wraith-card:hover {
    transform: translateY(-10px);
    background: var(--surface-color-hover);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.1);
}

.why-wraith-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.1), transparent);
    transition: 0.5s;
}

.why-wraith-card:hover::before {
    left: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.1);
    transition: all 0.3s ease;
}

.why-wraith-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(0, 245, 212, 0.2);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-wraith-card:hover .card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--glow-color));
}

.why-wraith-card h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-wraith-card p {
    color: var(--text-color-dark);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-wraith-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-wraith-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    .why-wraith-text {
        text-align: center;
    }
    .why-wraith-text h2 {
        text-align: center;
    }
    .why-wraith-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.scripting-section {
    padding-top: 5rem;
}

.scripting-content {
    max-width: 900px;
    margin: 0 auto;
}

.code-editor-mockup {
    background: #0f0c29;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    text-align: left;
}

.code-header {
    background: #1c1c3c;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.code-header span {
    color: var(--text-color-dark);
    font-family: monospace;
}

.code-buttons { display: flex; gap: 0.5rem; }
.code-buttons span {
    width: 12px; height: 12px; border-radius: 50%;
}
.code-buttons span:nth-child(1) { background-color: #ff5f56; }
.code-buttons span:nth-child(2) { background-color: #ffbd2e; }
.code-buttons span:nth-child(3) { background-color: #27c93f; }

pre {
    margin: 0;
    padding: 1.5rem;
    overflow-x: auto;
}

pre code.hljs {
    background: transparent !important;
}

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

.testimonial-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.testimonial-card span {
    font-weight: 600;
    color: var(--primary-color);
}

.download-section h2 {
    color: #fff;
}

.injector-mockup {
    background: linear-gradient(145deg, #161633, #1e1e44);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-width: 450px;
    margin: 3rem auto 0;
    overflow: hidden;
    text-align: left;
}

.injector-title-bar {
    background: #0f0c29;
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color-dark);
    font-weight: 600;
}

.injector-controls { font-size: 1.2rem; }

.injector-body {
    padding: 2.5rem 2rem;
}

.injector-status {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.injector-details {
    color: var(--text-color-dark);
    margin-bottom: 2rem;
}

.injector-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.injector-progress {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--glow-color);
}

.injector-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--glow-color);
}

.injector-button:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: scale(1.02);
}

.closed-beta-notice {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 3rem auto 0;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.closed-beta-notice:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(155, 93, 229, 0.3);
    border-color: var(--secondary-color);
}

.closed-beta-notice p {
    color: var(--text-color-dark);
    margin: 1.5rem 0;
}

.download-page-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 5rem;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closed-beta-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(155, 93, 229, 0.5);
}

.download-description {
    font-size: 1.2rem;
    color: var(--text-color-dark);
    max-width: 600px;
    margin: 1.5rem auto 3rem;
}

.discord-invite {
    display: flex;
    align-items: center;
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.discord-invite:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(155, 93, 229, 0.3);
    border-color: var(--secondary-color);
}

.discord-invite i {
    font-size: 4rem;
    color: #5865F2; /* Discord blue */
    margin-right: 2rem;
}

.discord-info {
    flex: 1;
}

.discord-info h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.discord-info p {
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
}

.beta-features {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.beta-features h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.beta-features ul {
    list-style: none;
    padding: 0;
}

.beta-features ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.beta-features ul li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.experimentation-section {
    padding: 6rem 0;
}

.experimentation-content {
    max-width: 1100px;
    margin: 0 auto;
}

.experimentation-content p {
    max-width: 700px;
    margin: 1.5rem auto 4rem;
    color: var(--text-color-dark);
    font-size: 1.2rem;
}

.experimentation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.experimentation-feature {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

.experimentation-feature:hover {
    transform: translateY(-10px);
    background: var(--surface-color-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(155, 93, 229, 0.3);
    border-color: var(--secondary-color);
}

.experimentation-feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(155, 93, 229, 0.5);
    transition: transform 0.3s ease;
}

.experimentation-feature:hover i {
    transform: scale(1.1);
}

.experimentation-feature h3 {
    color: #fff;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.experimentation-feature p {
    color: var(--text-color-dark);
    margin: 0;
    font-size: 1rem;
}

.experimentation-demo {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.experimentation-mockup {
    background: linear-gradient(145deg, #161633, #1e1e44);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    text-align: left;
}

.mockup-header {
    background: #0f0c29;
    padding: 0.7rem 1rem;
    color: var(--text-color-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.mockup-body {
    padding: 2rem;
}

.mockup-status {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.mockup-stats {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

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

.stat-label {
    color: var(--text-color-dark);
}

.stat-value {
    color: var(--text-color);
    font-weight: 600;
}

.mockup-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mockup-button {
    padding: 0.7rem 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mockup-button:hover {
    background: rgba(155, 93, 229, 0.2);
    border-color: var(--secondary-color);
    color: var(--text-color);
}

.mockup-button.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(155, 93, 229, 0.5);
}

.main-footer {
    padding: 3rem 5%;
    text-align: center;
    background: #0f0c29;
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-color-dark);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .why-wraith-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-wraith-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    .why-wraith-text {
        text-align: center;
    }
    .why-wraith-text h2 {
        text-align: center;
    }
    .why-wraith-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }
    .main-nav {
        justify-content: center;
    }
    .main-nav ul { display: none; } /* Simple responsive nav for now */
    main { padding: 0 1rem; }
}
