:root {
    --primary: #111111;
    --secondary: #555555;
    --accent: #000000;
    --background: #ffffff;
    --text: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5em 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--accent);
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 max(4rem, 8vw);
}

.hero-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero {
    flex: 1;
    position: relative;
    z-index: 2;
}

.demo-card {
    width: 500px;
    height: 600px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: enhancedPulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.875rem;
    opacity: 0.6;
}

.demo-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(0,0,0,0.1);
    border-radius: 12px;
}

.demo-placeholder {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    margin-bottom: -0.2rem;
}

.demo-placeholder p {
    margin: 0;
    opacity: 0.4;
}

.demo-placeholder .social-button {
    opacity: 1;
    margin-top: 0.5rem;
}

.demo-placeholder .social-button .button_top {
    font-size: 0.9rem;
    padding: 0.75em 1.5em;
    opacity: 1;
}

.demo-placeholder .social-button:hover {
    opacity: 1;
}

.demo-placeholder .button_top {
    font-size: 0.9rem;
    padding: 0.5em 1em;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tagline {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent);
    opacity: 0.7;
    animation: fadeIn 0.5s ease 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

.heading-row {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.heading-row:nth-child(1) { animation-delay: 0.2s; }
.heading-row:nth-child(2) { animation-delay: 0.4s; }
.heading-row:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-footer {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: flex-start;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 400px;
    line-height: 1.5;
}

.cta-button {
    --button_radius: 0.75em;
    --button_color: var(--background);
    --button_outline_color: var(--accent);
    
    font-size: 17px;
    font-weight: bold;
    border: none;
    cursor: none;
    border-radius: var(--button_radius);
    background: var(--button_outline_color);
    padding: 0;
    position: relative;
}

.button_top {
    display: block;
    box-sizing: border-box;
    border: 2px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 0.75em 1.5em;
    background: var(--button_color);
    color: var(--button_outline_color);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
}

.cta-button:hover .button_top {
    transform: translateY(-0.33em);
}

.cta-button:active .button_top {
    transform: translateY(0);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.gradient-shape {
    position: absolute;
    width: 90vh;
    height: 90vh;
    filter: blur(80px);
    opacity: 0.2;
    will-change: transform;
    mix-blend-mode: screen;
    pointer-events: none;
}

.gradient-shape.primary {
    top: 50%;
    right: -20%;
    background: linear-gradient(45deg, #0066FF, #00FFE0);
    animation: float 15s ease-in-out infinite;
}

.gradient-shape.secondary {
    bottom: -20%;
    left: -10%;
    background: linear-gradient(45deg, #FF3366, #FF9900);
    animation: float 18s ease-in-out infinite reverse;
    opacity: 0.15;
}

.gradient-shape.tertiary {
    top: -30%;
    left: 30%;
    background: linear-gradient(45deg, #7000FF, #FF00E5);
    animation: float 20s ease-in-out infinite;
    opacity: 0.12;
}

.gradient-shape.quaternary {
    top: 40%;
    left: -20%;
    background: linear-gradient(45deg, #00C6FF, #0066FF);
    animation: float 16s ease-in-out infinite reverse;
    opacity: 0.18;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(8%, -3%) rotate(10deg) scale(1.15);
    }
    40% {
        transform: translate(-3%, 8%) rotate(-5deg) scale(0.95);
    }
    60% {
        transform: translate(-8%, -5%) rotate(-10deg) scale(1.1);
    }
    80% {
        transform: translate(5%, 8%) rotate(5deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

.cursor-glow {
    display: none;
}

.custom-cursor {
    width: 16px;
    height: 16px;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    color: white;
    opacity: 0;
    transition: transform 0.05s ease, opacity 0.3s ease;
    will-change: transform;
    mix-blend-mode: exclusion;
}

.custom-cursor svg {
    width: 100%;
    height: 100%;
}

.custom-cursor circle {
    stroke-width: 1;
}

a, button, [role="button"] {
    cursor: none;
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(1.5);
}

.custom-cursor.clicking {
    transform: scale(0.8);
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    opacity: 0.15;
    z-index: -3;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Add grid pulse animation */
@keyframes gridPulse {
    0% {
        background-size: 50px 50px;
        opacity: 0.04;
    }
    50% {
        background-size: 51px 51px;
        opacity: 0.06;
    }
    100% {
        background-size: 50px 50px;
        opacity: 0.04;
    }
}

.grid-background {
    animation: gridPulse 4s ease-in-out infinite;
}

.teaser-section {
    width: 500px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.teaser-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.2);
}

.teaser-section:hover .teaser-logo {
    color: var(--accent);
}

.teaser-section:hover .teaser-line {
    opacity: 0.2;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
}

.teaser-section.wide {
    width: 500px;
    height: 600px;
}

.teaser-content {
    position: relative;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.teaser-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.teaser-text {
    text-align: center;
    margin-top: -4rem;
}

.teaser-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    opacity: 0.5;
    display: block;
    margin-bottom: 1rem;
}

.teaser-text h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.teaser-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.7;
    max-width: 400px;
    margin: 0 auto;
}

.teaser-footer {
    width: 100%;
}

.teaser-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text) 50%, transparent);
    opacity: 0.1;
    margin-bottom: 2rem;
}

.teaser-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* Add a special gradient shape just for the teaser */
.teaser-section::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: linear-gradient(45deg, rgba(0,0,0,0.03) 0%, transparent 100%);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Add a container for the second page */
.second-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8rem 0 0 0;
    gap: 3rem;
    margin-bottom: 4rem;
    z-index: 1;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.social-links-container {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0,0,0,0.02);
}

.social-username {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text);
    opacity: 0.7;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--accent);
    background: rgba(0,0,0,0.03);
}

.third-page {
    display: none;
}

.launch-date {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--accent);
    margin-top: 1rem;
}

/* Update feature list for new layout */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translateX(5px);
}

.feature-icon {
    color: var(--accent);
    font-size: 0.5rem;
    transition: transform 0.2s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.2);
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Countdown styles */
.countdown {
    margin: 2rem 0;
}

.countdown-value {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent);
}

.countdown-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-top: 0.5rem;
}

.hashtag {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
}

/* Social links styles */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    opacity: 1;
}

/* Add page transitions */
.second-page,
.third-page,
.fourth-page {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.launch-explanation,
.launch-explanation-content {
    display: none;
}

.site-footer {
    width: 100%;
    background: rgba(0,0,0,0.02);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 4rem 0 2rem 0;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-text {
    margin-bottom: 2rem;
}

.footer-text h2 {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
    margin: 1rem 0;
    letter-spacing: -0.02em;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    position: relative;
    padding: 0.5em 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-info {
    text-align: right;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-size: 0.875rem;
    opacity: 0.4;
}

.site-footer .cta-button {
    margin: 0 auto;
    cursor: none !important;
    --button_radius: 0.75em;
    --button_color: var(--background);
    --button_outline_color: var(--accent);
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: var(--button_radius);
    background: var(--button_outline_color);
    padding: 0;
    position: relative;
}

.site-footer .cta-button .button_top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-sizing: border-box;
    border: 2px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 0.75em 1.5em;
    background: var(--button_color);
    color: var(--button_outline_color);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
    cursor: none !important;
}

.site-footer .cta-button:hover .button_top {
    transform: translateY(-0.33em);
}

.site-footer .cta-button:active .button_top {
    transform: translateY(0);
}

.social-buttons {
    display: none;
}

.social-button {
    --button_radius: 0.75em;
    --button_color: var(--background);
    --button_outline_color: var(--accent);
    
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: none;
    border-radius: var(--button_radius);
    background: var(--button_outline_color);
    padding: 0;
    position: relative;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-button:hover {
    opacity: 1;
}

.social-button .button_top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-sizing: border-box;
    border: 2px solid var(--button_outline_color);
    border-radius: var(--button_radius);
    padding: 0.5em 1em;
    background: var(--button_color);
    color: var(--button_outline_color);
    transform: translateY(-0.2em);
    transition: transform 0.1s ease;
}

.social-button:hover .button_top {
    transform: translateY(-0.33em);
}

.social-button:active .button_top {
    transform: translateY(0);
}

/* Remove old social links styles */
.social-links-container {
    display: none;
}

/* Social buttons hover effect */
.social-button {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-button:hover {
    transform: scale(1.05);
}

/* Status dot enhanced animation */
.status-dot {
    animation: enhancedPulse 2s ease-in-out infinite;
}

@keyframes enhancedPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
        box-shadow: 0 0 0 10px rgba(0,0,0,0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Ensure all buttons maintain custom cursor */
button, 
button *, 
[role="button"],
[role="button"] * {
    cursor: none !important;
}

/* Banter Loader Animation */
.banter-loader {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 72px;
    height: 72px;
    margin-left: -36px;
    margin-top: -36px;
}

.banter-loader__box {
    float: left;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    background: #414141;
}

.banter-loader__box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #414141;

}

.banter-loader__box:nth-child(3n) {
    margin-right: 0;
    margin-bottom: 6px;
    background: #414141;

}

.banter-loader__box:nth-child(1):before, .banter-loader__box:nth-child(4):before {
    margin-left: 26px;
}

.banter-loader__box:nth-child(3):before {
    margin-top: 52px;
}

.banter-loader__box:last-child {
    margin-bottom: 0;
}

@keyframes moveBox-1 {
    9.0909090909% { transform: translate(-26px, 0); }
    18.1818181818% { transform: translate(0px, 0); }
    27.2727272727% { transform: translate(0px, 0); }
    36.3636363636% { transform: translate(26px, 0); }
    45.4545454545% { transform: translate(26px, 26px); }
    54.5454545455% { transform: translate(26px, 26px); }
    63.6363636364% { transform: translate(26px, 26px); }
    72.7272727273% { transform: translate(26px, 0px); }
    81.8181818182% { transform: translate(0px, 0px); }
    90.9090909091% { transform: translate(-26px, 0px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(1) {
    animation: moveBox-1 4s infinite;
    background: #414141;

}

@keyframes moveBox-2 {
    9.0909090909% { transform: translate(0, 0); }
    18.1818181818% { transform: translate(26px, 0); }
    27.2727272727% { transform: translate(0px, 0); }
    36.3636363636% { transform: translate(26px, 0); }
    45.4545454545% { transform: translate(26px, 26px); }
    54.5454545455% { transform: translate(26px, 26px); }
    63.6363636364% { transform: translate(26px, 26px); }
    72.7272727273% { transform: translate(26px, 26px); }
    81.8181818182% { transform: translate(0px, 26px); }
    90.9090909091% { transform: translate(0px, 26px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(2) {
    animation: moveBox-2 4s infinite;
    background: #414141;

}

@keyframes moveBox-3 {
    9.0909090909% { transform: translate(-26px, 0); }
    18.1818181818% { transform: translate(-26px, 0); }
    27.2727272727% { transform: translate(0px, 0); }
    36.3636363636% { transform: translate(-26px, 0); }
    45.4545454545% { transform: translate(-26px, 0); }
    54.5454545455% { transform: translate(-26px, 0); }
    63.6363636364% { transform: translate(-26px, 0); }
    72.7272727273% { transform: translate(-26px, 0); }
    81.8181818182% { transform: translate(-26px, -26px); }
    90.9090909091% { transform: translate(0px, -26px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(3) {
    animation: moveBox-3 4s infinite;
    background: #414141;

}

@keyframes moveBox-4 {
    9.0909090909% { transform: translate(-26px, 0); }
    18.1818181818% { transform: translate(-26px, 0); }
    27.2727272727% { transform: translate(-26px, -26px); }
    36.3636363636% { transform: translate(0px, -26px); }
    45.4545454545% { transform: translate(0px, 0px); }
    54.5454545455% { transform: translate(0px, -26px); }
    63.6363636364% { transform: translate(0px, -26px); }
    72.7272727273% { transform: translate(0px, -26px); }
    81.8181818182% { transform: translate(-26px, -26px); }
    90.9090909091% { transform: translate(-26px, 0px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(4) {
    animation: moveBox-4 4s infinite;
    background: #414141;

}

@keyframes moveBox-5 {
    9.0909090909% { transform: translate(0, 0); }
    18.1818181818% { transform: translate(0, 0); }
    27.2727272727% { transform: translate(0, 0); }
    36.3636363636% { transform: translate(26px, 0); }
    45.4545454545% { transform: translate(26px, 0); }
    54.5454545455% { transform: translate(26px, 0); }
    63.6363636364% { transform: translate(26px, 0); }
    72.7272727273% { transform: translate(26px, 0); }
    81.8181818182% { transform: translate(26px, -26px); }
    90.9090909091% { transform: translate(0px, -26px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(5) {
    animation: moveBox-5 4s infinite;
    background: #414141;

}

@keyframes moveBox-6 {
    9.0909090909% { transform: translate(0, 0); }
    18.1818181818% { transform: translate(-26px, 0); }
    27.2727272727% { transform: translate(-26px, 0); }
    36.3636363636% { transform: translate(0px, 0); }
    45.4545454545% { transform: translate(0px, 0); }
    54.5454545455% { transform: translate(0px, 0); }
    63.6363636364% { transform: translate(0px, 0); }
    72.7272727273% { transform: translate(0px, 26px); }
    81.8181818182% { transform: translate(-26px, 26px); }
    90.9090909091% { transform: translate(-26px, 0px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(6) {
    animation: moveBox-6 4s infinite;
}

@keyframes moveBox-7 {
    9.0909090909% { transform: translate(26px, 0); }
    18.1818181818% { transform: translate(26px, 0); }
    27.2727272727% { transform: translate(26px, 0); }
    36.3636363636% { transform: translate(0px, 0); }
    45.4545454545% { transform: translate(0px, -26px); }
    54.5454545455% { transform: translate(26px, -26px); }
    63.6363636364% { transform: translate(0px, -26px); }
    72.7272727273% { transform: translate(0px, -26px); }
    81.8181818182% { transform: translate(0px, 0px); }
    90.9090909091% { transform: translate(26px, 0px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(7) {
    animation: moveBox-7 4s infinite;
}

@keyframes moveBox-8 {
    9.0909090909% { transform: translate(0, 0); }
    18.1818181818% { transform: translate(-26px, 0); }
    27.2727272727% { transform: translate(-26px, -26px); }
    36.3636363636% { transform: translate(0px, -26px); }
    45.4545454545% { transform: translate(0px, -26px); }
    54.5454545455% { transform: translate(0px, -26px); }
    63.6363636364% { transform: translate(0px, -26px); }
    72.7272727273% { transform: translate(0px, -26px); }
    81.8181818182% { transform: translate(26px, -26px); }
    90.9090909091% { transform: translate(26px, 0px); }
    100% { transform: translate(0px, 0px); }
}

.banter-loader__box:nth-child(8) {
    animation: moveBox-8 4s infinite;
}

@keyframes moveBox-9 {
    9.0909090909% { transform: translate(-26px, 0); }
    18.1818181818% { transform: translate(-26px, 0); }
    27.2727272727% { transform: translate(0px, 0); }
    36.3636363636% { transform: translate(-26px, 0); }
    45.4545454545% { transform: translate(0px, 0); }
    54.5454545455% { transform: translate(0px, 0); }
    63.6363636364% { transform: translate(-26px, 0); }
    72.7272727273% { transform: translate(-26px, 0); }
    81.8181818182% { transform: translate(-52px, 0); }
    90.9090909091% { transform: translate(-26px, 0); }
    100% { transform: translate(0px, 0); }
}

.banter-loader__box:nth-child(9) {
    animation: moveBox-9 4s infinite;
}

.faq-section {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}
