/* ==========================================================================
   Lady Death: Demonicron - Playtest Page Styles
   Hell-Raiser World Tour Campaign
   ========================================================================== */

/* Macabre Font */
@font-face {
    font-family: 'Macabre';
    src: url('../media/The Macabre.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Apply Macabre font to all h1 and h2 elements */
h1, h2 {
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* MDVMKEX Optical for all body/paragraph text (same as timeline-desc) */
body {
    font-family: 'MDVMKEX_optical', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   Playtest Hero Banner - Logo + Content over Background
   ========================================================================== */
.playtest-hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.playtest-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.playtest-hero-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.playtest-hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(ellipse 80% 70% at 50% 45%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.playtest-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 80px 24px 60px;
    text-align: center;
}

.playtest-menu-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 24px;
    background: rgba(0, 0, 0, 0.75);
    border-bottom: 1px solid rgba(193, 39, 45, 0.5);
}

.playtest-menu-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.playtest-menu-logo {
    max-width: 75px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.playtest-hero-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #c1272d;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.playtest-hero-subtitle {
    font-size: 1.9em;
    color: #fff;
    margin: 0 0 28px 0;
    font-style: italic;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
}

.playtest-hero-intro {
    font-size: 1.25em;
    color: #ddd;
    max-width: 720px;
    margin: 0 auto 18px;
    line-height: 1.65;
}

.playtest-hero-note {
    font-size: 1.1em;
    color: #c1272d;
    margin: 0 auto 28px;
    max-width: 640px;
}

.playtest-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.playtest-hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #c1272d;
    border: 2px solid #c1272d;
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.playtest-hero-scroll:hover {
    color: #fff;
    background-color: #c1272d;
}

@media (min-width: 768px) {
    .playtest-menu-bar {
        padding: 12px 32px;
    }
    .playtest-menu-logo {
        max-width: 105px;
        max-height: 82px;
    }
    .playtest-hero-title {
        font-size: 3.6em;
    }
    .playtest-hero-subtitle {
        font-size: 2.2em;
        margin-bottom: 32px;
    }
    .playtest-hero-intro {
        font-size: 1.35em;
    }
    .playtest-hero-note {
        font-size: 1.2em;
    }
}

/* Parallax Section - How to Join through Footer - Full width */
.parallax-section {
    position: relative;
    margin-top: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/scene8.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
}

.parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* Section Titles */
.section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #c1272d;
    text-align: center;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

/* Hero Section */
.playtest-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(193, 39, 45, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 2px solid #c1272d;
    margin: 20px 0 40px 0;
    border-radius: 10px;
}

.playtest-title {
    font-size: 3.5em;
    font-weight: bold;
    color: #c1272d;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.playtest-subtitle {
    font-size: 2em;
    color: #fff;
    margin: 0 0 30px 0;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
}

.playtest-intro {
    font-size: 1.2em;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.playtest-prereq {
    font-size: 1.1em;
    color: #c1272d;
    font-weight: bold;
    margin: 20px auto 30px auto;
    padding: 15px;
    background: rgba(193, 39, 45, 0.1);
    border: 2px solid #c1272d;
    border-radius: 5px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta, .btn-cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-cta {
    background-color: #c1272d;
    color: #fff;
    border: 2px solid #c1272d;
}

.btn-cta:hover {
    background-color: #fff;
    color: #c1272d;
    text-decoration: none;
}

.btn-cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

/* Timeline Section - uses pack-card style from main.css */
.timeline-section .section-subtitle {
    margin-top: -15px;
    margin-bottom: 35px;
}

.timeline-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-card {
    /* Uses pack-card base styles from main.css */
}

.timeline-card--active {
    box-shadow:
        0 0 18px rgba(193, 39, 45, 0.5),
        0 0 35px rgba(193, 39, 45, 0.35),
        0 0 55px rgba(193, 39, 45, 0.25),
        0 0 85px rgba(193, 39, 45, 0.15),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.timeline-desc {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-family: 'MDVMKEX_optical', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.timeline-desc--muted {
    color: #666;
    font-style: italic;
}

.pack-card__badge--muted {
    background: #666;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* How to Join - Nav + Content Layout */
.how-it-works {
    padding: 40px 0;
}

.steps-nav-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .steps-nav-layout {
        flex-direction: row;
        gap: 0;
        align-items: stretch;
    }
}

.steps-nav {
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

@media (min-width: 992px) {
    .steps-nav {
        flex-direction: column;
        gap: 12px;
    }
}

.steps-nav__btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (min-width: 992px) {
    .steps-nav__btn {
        padding: 10px 14px;
        font-size: 18px;
    }
}

.steps-nav__btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.steps-nav__btn.active {
    background: rgba(193, 39, 45, 0.2);
    color: #c1272d;
    box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.6);
}

@media (min-width: 992px) {
    .steps-nav__btn {
        position: relative;
    }
    .steps-nav__btn.active::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        border: 10px solid transparent;
        border-left-color: rgba(193, 39, 45, 0.6);
        z-index: 1;
    }
}

.steps-nav__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    font-size: 15px;
    font-weight: bold;
}

.steps-nav__btn .steps-nav__num {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.steps-nav__btn.active .steps-nav__num {
    background: #c1272d;
    color: #000;
    border: none;
}

/* Connector bar between nav and content */
.steps-connector {
    display: none;
}

@media (min-width: 992px) {
    .steps-connector {
        display: block;
        width: 3px;
        flex-shrink: 0;
        background: linear-gradient(to right, rgba(193, 39, 45, 0.5), rgba(193, 39, 45, 0.2));
        margin: 0 -1px;
    }
}

.steps-content {
    flex: 1;
    min-height: 0;
}

.steps-panel {
    display: none;
    padding: 24px;
    border-radius: 8px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.4) 100%);
    box-shadow:
        0 0 15px rgba(193, 39, 45, 0.4),
        0 0 30px rgba(193, 39, 45, 0.3),
        0 0 50px rgba(193, 39, 45, 0.2),
        0 0 80px rgba(193, 39, 45, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.steps-panel:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 20px rgba(193, 39, 45, 0.5),
        0 0 40px rgba(193, 39, 45, 0.35),
        0 0 60px rgba(193, 39, 45, 0.25),
        0 8px 25px rgba(193, 39, 45, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
    .steps-panel {
        padding: 28px 32px;
    }
}

.steps-panel.active {
    display: block;
}

.steps-panel__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.steps-panel__num {
    flex-shrink: 0;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    color: rgba(193, 39, 45, 0.8);
    letter-spacing: 2px;
}

.steps-panel__title {
    margin: 0;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.steps-panel__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'MDVMKEX_optical', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Benefits Grid */
.why-join {
    padding: 40px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.benefit-card {
    background: rgba(193, 39, 45, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(193, 39, 45, 0.1);
    border-color: #c1272d;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #c1272d;
    margin: 0 0 15px 0;
    font-size: 1.3em;
}

.benefit-card p {
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

/* Featured Test Section */
.featured-test {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Inverse of pack-card: red-tinted center, light border, strong red glow */
.featured-content {
    padding: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(193, 39, 45, 0.25) 0%, rgba(193, 39, 45, 0.12) 50%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 0 25px rgba(193, 39, 45, 0.5),
        0 0 50px rgba(193, 39, 45, 0.25),
        0 0 80px rgba(193, 39, 45, 0.15),
        inset 0 0 60px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.featured-content:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 30px rgba(193, 39, 45, 0.6),
        0 0 60px rgba(193, 39, 45, 0.3),
        0 8px 30px rgba(193, 39, 45, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.04);
}

.featured-header h3 {
    color: #c1272d;
    font-size: 2em;
    margin: 0 0 10px 0;
}

.featured-dates {
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.featured-description {
    color: #ddd;
}

.featured-description p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.featured-description h4 {
    color: #c1272d;
    margin: 30px 0 15px 0;
    font-size: 1.3em;
}

.featured-description ul {
    list-style: none;
    padding: 0;
}

.featured-description li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.featured-description li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #c1272d;
    font-weight: bold;
}

/* Bounty Board - Competitions Section */
.competitions {
    padding: 40px 0;
}

.how-to-submit {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px 30px;
    background: rgba(30, 15, 10, 0.6);
    border: 1px solid rgba(193, 39, 45, 0.3);
    border-radius: 8px;
}

.how-to-submit h4 {
    color: #c1272d;
    font-size: 1.2em;
    margin: 0 0 16px 0;
    font-family: 'Macabre', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.how-to-submit p {
    color: #ddd;
    line-height: 1.7;
    margin: 0 0 14px 0;
}

.how-to-submit p:last-child {
    margin-bottom: 0;
}

.how-to-submit ol {
    margin: 0;
    padding-left: 24px;
    color: #ddd;
    line-height: 1.8;
}

.how-to-submit li {
    margin-bottom: 8px;
}

.bounty-board {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 50px;
    background: 
        linear-gradient(135deg, rgba(30, 15, 10, 0.95) 0%, rgba(20, 10, 5, 0.98) 50%, rgba(25, 12, 8, 0.95) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
    border: 4px solid rgba(80, 40, 30, 0.9);
    border-radius: 4px;
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(193, 39, 45, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.6);
}

.bounty-board__frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(193, 39, 45, 0.2);
    border-radius: 2px;
    pointer-events: none;
}

.competition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .competition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.competition-card {
    position: relative;
    background: linear-gradient(180deg, rgba(45, 25, 20, 0.95) 0%, rgba(30, 15, 12, 0.98) 100%);
    border: 2px solid rgba(120, 60, 50, 0.8);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.4);
}

.competition-card::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #8b4513, #5d2e0f);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.2), 0 1px 3px rgba(0,0,0,0.5);
    z-index: 2;
}

.competition-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(193, 39, 45, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(193, 39, 45, 0.5);
}

.competition-header {
    background: linear-gradient(180deg, #c1272d 0%, #8a1c20 100%);
    padding: 18px 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.competition-header h3 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1.4em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.competition-type {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.competition-body {
    padding: 20px;
}

.competition-body p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.competition-reward {
    background: rgba(193, 39, 45, 0.15);
    padding: 12px 15px;
    border-radius: 2px;
    margin-bottom: 15px;
    border-left: 3px solid #c1272d;
    color: #e8e8e8;
}

.competition-reward strong {
    color: #c1272d;
}

.competition-verification {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}

.competition-verification .hashtag {
    font-size: 1.35em;
    font-weight: 600;
    font-style: normal;
    color: #c1272d;
    letter-spacing: 0.5px;
}

.competition-deadline {
    margin-top: 30px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border-left: 4px solid #c1272d;
}

.competition-deadline p {
    color: #ddd;
    margin: 0;
    line-height: 1.7;
    font-size: 0.95em;
}

/* VIP Section */
.vip-section {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Same design as First Blood: red-tinted center, light border, strong red glow */
.vip-content {
    padding: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(193, 39, 45, 0.25) 0%, rgba(193, 39, 45, 0.12) 50%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 0 25px rgba(193, 39, 45, 0.5),
        0 0 50px rgba(193, 39, 45, 0.25),
        0 0 80px rgba(193, 39, 45, 0.15),
        inset 0 0 60px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.vip-content:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 30px rgba(193, 39, 45, 0.6),
        0 0 60px rgba(193, 39, 45, 0.3),
        0 8px 30px rgba(193, 39, 45, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.04);
}

.vip-badge {
    text-align: center;
    margin-bottom: 40px;
}

.vip-badge h3 {
    font-size: 4em;
    margin: 0;
}

.vip-badge p {
    color: #c1272d;
    font-size: 1.3em;
    font-weight: bold;
    margin: 10px 0 0 0;
    text-transform: uppercase;
}

.vip-intro {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
}

.vip-intro p {
    color: #ddd;
    font-size: 1.2em;
    line-height: 1.8;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

.vip-benefits h4 {
    color: #c1272d;
    font-size: 1.5em;
    margin: 0 0 30px 0;
}

.vip-benefit {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #c1272d;
    border-radius: 5px;
}

.vip-benefit strong {
    color: #fff;
    font-size: 1.1em;
    display: block;
    margin-bottom: 10px;
}

.vip-benefit p {
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

.vip-cta {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(193, 39, 45, 0.1);
    border-radius: 5px;
}

.vip-cta p {
    color: #ddd;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    padding: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(193, 39, 45, 0.1);
}

.faq-item.active .faq-question {
    background: rgba(193, 39, 45, 0.2);
}

.faq-question h4 {
    color: #fff;
    margin: 0;
    font-size: 1.2em;
    flex: 1;
}

.faq-toggle {
    color: #c1272d;
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

/* Signup Section */
.signup-section {
    padding: 40px 0;
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .playtest-title {
        font-size: 2em;
    }
    
    .playtest-subtitle {
        font-size: 1.3em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .benefits-grid,
    .competition-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .vip-content {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .playtest-title {
        font-size: 1.5em;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .competition-header h3 {
        font-size: 1.1em;
    }
}
