/* RESET & BASE */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-neon: #b3f42d;
    --color-neon-dim: rgba(179, 244, 45, 0.1);
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-metal-light: #e0e0e0;
    --color-metal-dark: #7a7a7a;

    --font-main: 'Outfit', sans-serif;

    --gradient-metal: linear-gradient(135deg, #f0f0f0 0%, #a0a0a0 45%, #ffffff 50%, #a0a0a0 55%, #707070 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    --circuit-opacity: 0.03;
}

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

body {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(179, 244, 45, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(179, 244, 45, 0.02) 0%, transparent 50%);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CRT Monitor Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
        );
    animation: crtFlicker 0.15s infinite;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 90%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

@keyframes crtFlicker {
    0% { opacity: 0.97; }
    50% { opacity: 1; }
    100% { opacity: 0.98; }
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-neon {
    color: var(--color-neon);
}

.text-center {
    text-align: center;
}

.text-metal {
    background: var(--gradient-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 8px;
    /* Modern slightly rounded look */
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-neon) 0%, #d4ff7a 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(179, 244, 45, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(179, 244, 45, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(179, 244, 45, 0.3);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--color-neon);
    background: rgba(179, 244, 45, 0.1);
    color: var(--color-neon);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(179, 244, 45, 0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* LAYOUT GRID */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flex-row>* {
    flex: 1;
}

/* BACKGROUND FX */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 244, 45, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.bg-top-right {
    top: -200px;
    right: -200px;
}

.bg-bottom-left {
    bottom: -200px;
    left: -200px;
}

/* MATRIX CANVAS & OVERLAY */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.35;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

.logo img.drop-in {
    animation: fadeBlur 1.2s ease-out forwards;
}

@keyframes fadeBlur {
    0% {
        opacity: 0;
        filter: blur(20px);
    }
    50% {
        opacity: 0.7;
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* HERO */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
    /* Increased gap */
    height: 100%;
}

.hero-text {
    flex: 1;
    max-width: 580px;
    /* Reduced max-width to avoid overlap */
    text-align: left;
    position: relative;
    z-index: 10;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 450px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--color-neon);
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* HERO VISUALS (NEW SPEAKER GROUP) */
.speaker-group-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 5px;
}

.speaker-busto {
    width: 140px;
    height: 450px;
    border: none;
    box-shadow: none;
    transition: all 0.4s ease;
    overflow: hidden;
    margin-left: 0;
    filter: brightness(0.9);
    position: relative;
}

.speaker-busto img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 75%);
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 75%);
}

.speaker-busto.p1 img {
    transform: translateX(calc(-50% + 25px));
}

.speaker-busto.p2 img {
    transform: translateX(calc(-50% + 5px));
}


.speaker-busto:first-child {
    margin-left: 0;
}

.speaker-busto:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 10;
    filter: brightness(1);
}

.speaker-busto:hover img {
    filter: drop-shadow(0 0 12px rgba(179, 244, 45, 0.8)) drop-shadow(0 0 25px rgba(179, 244, 45, 0.5));
}

.speaker-busto.p1 { z-index: 7; }
.speaker-busto.p2 { z-index: 6; }
.speaker-busto.p3 { z-index: 5; }
.speaker-busto.p4 { z-index: 4; }
.speaker-busto.p5 { z-index: 3; }
.speaker-busto.p6 { z-index: 2; }
.speaker-busto.p7 { z-index: 1; }

.speaker-busto.p1,
.speaker-busto.p2,
.speaker-busto.p3,
.speaker-busto.p4,
.speaker-busto.p5,
.speaker-busto.p6,
.speaker-busto.p7 {
    position: relative;
    cursor: pointer;
}


.speaker-name {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: var(--color-neon);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--color-neon);
    box-shadow: 0 0 20px rgba(179, 244, 45, 0.4);
    margin-bottom: 15px;
    z-index: 100;
    pointer-events: none;
}

.speaker-name::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--color-neon);
}

.speaker-busto:hover .speaker-name {
    opacity: 1;
    visibility: visible;
}

.speaker-busto:active .speaker-name {
    opacity: 1;
    visibility: visible;
}

.hologram-effect {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(179, 244, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-event-details {
    position: absolute;
    bottom: 40px;
    right: 20px;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.hero-event-details p {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    border-right: 3px solid var(--color-neon);
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
}

/* PROBLEM SECTION */
.section-problem {
    padding: 100px 0;
    position: relative;
}

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

.problem-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: var(--gradient-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.problem-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 30px;
    font-weight: 300;
}

.problem-narrative {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 50px;
}

.problem-symptoms {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.symptoms-title {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 30px;
    font-weight: 600;
}

.symptoms-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.symptoms-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--color-text-muted);
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.symptoms-list li:hover {
    border-color: var(--color-neon);
    background: rgba(179, 244, 45, 0.05);
    transform: translateX(5px);
}

.symptoms-list li i {
    font-size: 1.4rem;
    color: var(--color-neon);
    opacity: 0.8;
}

.problem-bridge {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .symptoms-list {
        grid-template-columns: 1fr;
    }
    
    .problem-title {
        font-size: 2rem;
    }
    
    .problem-lead {
        font-size: 1.2rem;
    }
    
    .problem-symptoms {
        padding: 25px;
    }
}

/* CARDS */
.card {
    background: var(--gradient-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon);
    box-shadow: 0 0 20px rgba(179, 244, 45, 0.1);
}

.card h3 {
    color: var(--color-metal-light);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* LISTS */
.neon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}


.neon-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.learn-content {
    text-align: center;
    width: 100%;
}

.learn-visual {
    display: none;
    /* Hide visual to center content cleanly as requested */
}

/* SPEAKERS */
.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.speaker-card {
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 1 320px;
    /* Base width for 3 per row (approx) */
}

.speaker-card:hover {
    transform: translateY(-5px);
}

.speaker-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.speaker-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-instagram:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.6);
}

.speaker-img-placeholder {
    width: 300px;
    height: 300px;
    background: #222;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid var(--color-neon);
    box-shadow: 0 0 20px var(--color-neon-dim);
    position: relative;
    overflow: hidden;
}

.speaker-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid var(--color-neon);
    box-shadow: 0 0 20px var(--color-neon-dim);
    object-fit: cover;
    display: block;
}

/* Abstract placeholder headshot */
.speaker-img-placeholder::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #333;
    border-radius: 50%;
}

.speaker-img-placeholder::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 160px;
    background: #333;
    border-radius: 50%;
}

/* OFFER */
.icon-lg-card {
    font-size: 2.5rem;
    color: var(--color-neon);
    margin-bottom: 15px;
    display: block;
}

.icon-xl {
    font-size: 3.5rem;
    color: var(--color-metal-light);
    margin-bottom: 20px;
}

.section-offer {
    padding: 80px 0 120px;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid var(--color-neon);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 0 50px rgba(179, 244, 45, 0.15);
    position: relative;
    overflow: hidden;
}

.offer-header .badge {
    background: var(--color-neon);
    color: black;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin: 30px 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--color-text-muted);
}

.period {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.offer-benefits {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 40px;
}

.offer-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-benefits li.highlight-benefited {
    background: rgba(179, 244, 45, 0.1);
    border: 1px solid var(--color-neon-dim);
    padding: 12px;
    border-radius: 8px;
    margin-left: -12px;
    margin-right: -12px;
}

.offer-benefits li i {
    font-size: 1.2rem;
}

.offer-benefits li i.ph-star {
    color: var(--color-neon);
    filter: drop-shadow(0 0 5px var(--color-neon));
}

.offer-benefits li.address-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.offer-benefits li.address-link a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-benefits li.address-link a:hover {
    color: var(--color-neon);
    text-decoration: underline;
}

.scarcity-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--color-neon);
}

/* 3D VIDEO SECTION */
.section-video-3d {
    padding: 20px 0;
    background: transparent;
    overflow: visible;
}

.logo-3d-video {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    background: transparent;
}

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

/* FOOTER */
.footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
}

.proof-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

/* ANIMATIONS */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
    }
    
    .nav-container .btn-sm {
        display: none;
    }
    
    .logo img {
        height: 120px;
    }
    
    .hero {
        text-align: center;
        padding-top: 160px;
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: auto;
        margin-top: 30px;
        min-width: unset;
        width: 100%;
        justify-content: center;
    }
    
    .speaker-group-mockup {
        display: flex;
        justify-content: center;
        gap: 3px;
        width: 100%;
        padding: 0 10px;
    }
    
    .speaker-busto {
        width: 45px;
        height: 180px;
        margin-left: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        overflow: hidden;
        filter: brightness(0.9);
        position: relative;
    }
    
    .speaker-busto img {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: auto;
        -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 75%);
        mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 75%);
    }
    
    .speaker-busto.p1 img {
        transform: translateX(calc(-50% + 5px));
    }
    
    .hero-event-details {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 40px;
        font-size: 0.9rem;
    }
    
    .hero-event-details p {
        border-right: none;
        border-bottom: 3px solid var(--color-neon);
    }
    
    .speaker-busto.p1,
    .speaker-busto.p2,
    .speaker-busto.p3,
    .speaker-busto.p4,
    .speaker-busto.p5,
    .speaker-busto.p6,
    .speaker-busto.p7 {
        height: 140px;
    }
    
    .speaker-name {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .float-card {
        transform: scale(0.8);
    }

    .offer-card {
        padding: 30px;
    }

    .speaker-img-placeholder {
        width: 260px;
        height: 260px;
    }

    .speaker-img-placeholder::after {
        width: 100px;
        height: 100px;
    }

    .speaker-img-placeholder::before {
        width: 180px;
        height: 140px;
    }

    .neon-list {
        grid-template-columns: 1fr;
    }
}