body.version2 {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.version2-header {
    width: 100%;
    background: #0a0a0a;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.version2-container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.version2-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff8c00;
}

.version2-nav a {
    color: #ccc;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.version2-nav a:hover {
    color: #fff;
}

.version2-buttons {
    display: flex;
    gap: 10px;
}

.version2-btn {
    padding: 8px 18px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.version2-register {
    background-color: #ff8c00;
    color: #fff;
}

.version2-register:hover {
    background-color: #ffa733;
}

.version2-login {
    background-color: transparent;
    border: 1px solid #444;
    color: #ccc;
}

.version2-login:hover {
    color: #fff;
    border-color: #666;
}

/* Hero Section - Moved to landing-hero.css for better responsive design */
/* See /css/version2/landing-hero.css for all hero styles */
.version2-main {
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.version2-main:hover {
    background: #ffa733;
}

.version2-details {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.version2-details-item-badge {
    display: flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 32px;
    background: linear-gradient(
        90deg,
        rgba(240, 185, 11, 0.08) 0%,
        rgba(255, 51, 88, 0.08) 100%
    );
}

.version2-details h1 {
    color: var(--Silver-White, #eaecef);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px; /* 116.667% */
    text-transform: capitalize;
}

@media screen and (max-width: 1440px) {
    .version2-details h1 {
        font-size: 32px;
        line-height: 40px;
    }
}

.version2-details span {
    color: var(--Muted-Gray, #8b949e);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.version2-details-item-create-account {
    color: white;
    cursor: pointer;
    display: flex;
    height: 40px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 32px;
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    transition: all 0.3s ease;
}

.version2-details-item-create-account:hover {
    background: var(--Graphite-Gray, rgb(42, 47, 54));
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
}

.version2-details-item-slides {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    align-self: stretch;
    margin-top: 40px;
}

.version2-slider-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    align-self: stretch;
    margin-top: 40px !important;
}

.version2-slider-title {
    padding: 0 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    color: var(--Silver-White, #eaecef);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
    text-transform: capitalize;
}

@media (max-width: 1440px) {
    .version2-slider-container {
        width: 100%;
    }
}

@media (min-width: 1460px) {
    .version2-slider-container {
        width: 1440px;
    }
}

.version2-slider-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    width: 100%;
}

.version2-slider-arrows-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 16px;
}

.version2-slider-arrows-icons-item {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0.026px 0.13px 0 0.078px rgba(255, 255, 255, 0.1) inset;
}
