* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #000;
    color: #fff;
}

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

button {
    font: inherit;
    cursor: pointer;
}

.bw-page {
    min-height: 100vh;
    background-color: #000;
    color: white;
}



.bw-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bw-star,
.bw-dot {
    position: absolute;
    display: block;
}

.bw-star {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.45);
}

.bw-star::before,
.bw-star::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%);
}

.bw-star::before {
    width: 34px;
    height: 1px;
}

.bw-star::after {
    width: 1px;
    height: 34px;
}

.bw-dot {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.bw-star-1 {
    top: 14%;
    left: 18%;
}

.bw-star-2 {
    top: 22%;
    right: 20%;
}

.bw-star-3 {
    bottom: 18%;
    left: 24%;
}

.bw-star-4 {
    bottom: 14%;
    right: 22%;
}

.bw-dot-1 {
    top: 38%;
    left: 8%;
}

.bw-dot-2 {
    top: 28%;
    left: 72%;
}

.bw-dot-3 {
    bottom: 32%;
    left: 78%;
}

.bw-dot-4 {
    bottom: 24%;
    left: 10%;
}

.bw-header {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bw-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bw-brand-ball {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(90deg, #ef4444 0%, #ef4444 50%, #3b82f6 50%, #3b82f6 100%);
    box-shadow: 0 0 26px rgba(255, 255, 255, 0.08);
}

.bw-brand-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.bw-brand-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-top: 4px;
}

.bw-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
}

.bw-nav a {
    transition: color 0.2s ease;
}

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

.bw-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 24px 96px;
}

.bw-hero {
    min-height: 78vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.bw-chip,
.bw-label,
.bw-mini-label,
.bw-phase {
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.bw-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 22px;
}

.bw-hero-copy h1 {
    margin: 0;
    font-size: clamp(52px, 9vw, 108px);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bw-hero-copy h1 span {
    display: block;
    background: linear-gradient(90deg, #ef4444 0%, #ffffff 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bw-hero-copy p {
    margin: 24px 0 0;
    max-width: 620px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
}

.bw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.bw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 18px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.bw-btn:hover {
    transform: translateY(-1px);
}

.bw-btn-primary {
    background: #fff;
    color: #000;
    box-shadow: 0 10px 36px rgba(255, 255, 255, 0.12);
}

.bw-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.bw-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bw-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 44px;
    max-width: 680px;
}

.bw-stat-card,
.bw-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.bw-stat-card {
    padding: 22px;
    border-radius: 24px;
}

.bw-stat-card strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.bw-stat-card span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.bw-hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-ball-glow {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(50px);
}

.bw-main-ball {
    position: relative;
    width: min(420px, 76vw);
    height: min(420px, 76vw);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #3b82f6 50%, #1d4ed8 100%);
    box-shadow: 0 0 120px rgba(255, 255, 255, 0.08);
}

.bw-main-ball-shade {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 18px 18px 40px rgba(255, 255, 255, 0.12), inset -20px -24px 40px rgba(0, 0, 0, 0.45);
}

.bw-main-ball-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.38);
}

.bw-main-ball-highlight {
    position: absolute;
    top: 18%;
    left: 28%;
    width: 26%;
    height: 18%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(16px);
}

.bw-main-ball-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bw-grid {
    display: grid;
    gap: 24px;
}

.bw-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bw-card {
    padding: 28px;
    border-radius: 28px;
}

.bw-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}

.bw-card h3,
.bw-roadmap h2 {
    margin: 0;
}

.bw-card h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.bw-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 16px;
}




.bw-roadmap h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}





.bw-token-row+.bw-token-row {
    margin-top: 22px;
}

.bw-mini-label,
.bw-phase {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.bw-token-value {
    font-size: 30px;
    font-weight: 800;
}

.bw-contract-box {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    word-break: break-all;
}

.bw-token-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.bw-token-actions button {
    border: 0;
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.bw-token-actions button:hover {
    transform: translateY(-1px);
}

.bw-token-actions button:first-child {
    background: #fff;
    color: #000;
}

.bw-token-actions button:last-child {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.bw-roadmap {
    margin-top: 96px;
}

.bw-roadmap-grid {
    margin-top: 34px;
}

@media (max-width: 1024px) {

    .bw-hero,
    .bw-token-section,
    .bw-grid-3 {
        grid-template-columns: 1fr;
    }

    .bw-hero {
        min-height: auto;
        padding-top: 20px;
    }

    .bw-hero-visual {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .bw-header {
        padding-top: 22px;
        padding-bottom: 10px;
    }

    .bw-nav {
        display: none;
    }

    .bw-container {
        padding: 12px 18px 72px;
    }

    .bw-hero {
        gap: 28px;
    }

    .bw-hero-copy p,
    .bw-token-section p {
        font-size: 17px;
    }

    .bw-stats,
    .bw-token-actions {
        grid-template-columns: 1fr;
    }

    .bw-card,
    .bw-token-card,
    .bw-token-section {
        padding: 22px;
    }

    .bw-hero-visual {
        min-height: 360px;
    }

    .bw-ball-glow {
        width: 320px;
        height: 320px;
    }
}

.bw-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.bw-dots span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}



.bw-dots span:nth-child(1) {
    top: 10%;
    left: 15%;
}

.bw-dots span:nth-child(2) {
    top: 20%;
    left: 80%;
}

.bw-dots span:nth-child(3) {
    top: 30%;
    left: 40%;
}

.bw-dots span:nth-child(4) {
    top: 50%;
    left: 10%;
}

.bw-dots span:nth-child(5) {
    top: 60%;
    left: 70%;
}

.bw-dots span:nth-child(6) {
    top: 75%;
    left: 25%;
}

.bw-dots span:nth-child(7) {
    top: 85%;
    left: 55%;
}

.bw-dots span:nth-child(8) {
    top: 40%;
    left: 90%;
}

.bw-dots span:nth-child(9) {
    top: 15%;
    left: 50%;
}

.bw-dots span:nth-child(10) {
    top: 65%;
    left: 5%;
}

.bw-header {
    position: relative;
    z-index: 10;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bw-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bw-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.bw-brand-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
}

.bw-brand-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-top: 4px;
}

.bw-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bw-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.bw-nav a:hover {
    color: white;
}

.bw-header {
    position: relative;
    z-index: 100;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bw-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bw-brand-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
}

.bw-brand-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-top: 4px;
}

.bw-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bw-nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

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

.bw-game-section {
    margin-top: 96px;
}

.bw-game-section h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bw-game-intro {
    margin: 18px 0 0;
    max-width: 860px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
}

.bw-game-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.bw-game-card h3 {
    margin: 0 0 14px;
}

.bw-game-box {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.bw-game-arena,
.bw-game-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    backdrop-filter: blur(12px);
}

.bw-game-arena {
    padding: 32px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-cube {
    width: min(520px, 100%);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
    padding: 24px;
}

.bw-cube-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}



.bw-fight-ball-red {
    left: 40px;
    top: 40%;
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.bw-fight-ball-blue {
    right: 40px;
    top: 40%;
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.bw-game-panel {
    padding: 28px;
}

.bw-setup-block {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bw-setup-block+.bw-setup-block {
    margin-top: 14px;
}

.bw-setup-block span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.bw-setup-block strong {
    font-size: 18px;
    font-weight: 800;
}

.bw-bet-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.bw-bet-buttons button {
    border: 0;
    border-radius: 18px;
    padding: 16px;
    font-weight: 800;
    color: white;
}

.bw-bet-red {
    background: linear-gradient(180deg, #ef4444, #b91c1c);
}

.bw-bet-blue {
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.bw-game-note {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
}

@media (max-width: 1024px) {

    .bw-game-grid,
    .bw-game-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .bw-game-arena,
    .bw-game-panel {
        padding: 22px;
    }

    .bw-fight-ball {
        width: 56px;
        height: 56px;
    }

    .bw-bet-buttons {
        grid-template-columns: 1fr;
    }

    .bw-game-intro {
        font-size: 17px;
    }
}

.bw-game-section {
    margin-top: 96px;
}

.bw-game-section h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bw-game-intro {
    margin: 18px 0 0;
    max-width: 860px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
}

.bw-game-box {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.bw-game-arena,
.bw-game-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    backdrop-filter: blur(12px);
}

.bw-game-arena {
    padding: 32px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-cube {
    width: min(520px, 100%);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
}

.bw-cube-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}



.bw-fight-ball-red {
    left: 40px;
    top: 40%;
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.bw-fight-ball-blue {
    right: 40px;
    top: 40%;
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.bw-game-panel {
    padding: 28px;
}

.bw-balance-box,
.bw-setup-block,
.bw-result-box {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.bw-balance-box,
.bw-setup-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bw-balance-box strong,
.bw-setup-block strong {
    font-size: 18px;
    font-weight: 800;
}

.bw-mt {
    margin-top: 22px;
}

.bw-setup-block+.bw-setup-block {
    margin-top: 14px;
}

.bw-setup-block span,
.bw-balance-box span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.bw-input {
    width: 120px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 16px;
    outline: none;
}

.bw-bet-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.bw-bet-buttons button,
.bw-start-fight {
    border: 0;
    border-radius: 18px;
    padding: 16px;
    font-weight: 800;
    color: white;
    cursor: pointer;
}

.bw-bet-red {
    background: linear-gradient(180deg, #ef4444, #b91c1c);
}

.bw-bet-blue {
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}

.bw-start-fight {
    width: 100%;
    margin-top: 14px;
    background: white;
    color: black;
}

.bw-result-box {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    min-height: 56px;
}

@media (max-width: 1024px) {
    .bw-game-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .bw-game-arena,
    .bw-game-panel {
        padding: 22px;
    }

    .bw-fight-ball {
        width: 56px;
        height: 56px;
    }

    .bw-bet-buttons {
        grid-template-columns: 1fr;
    }

    .bw-game-intro {
        font-size: 17px;
    }

    .bw-input {
        width: 90px;
    }
}



.bw-ball-hp {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 768px) {
    .bw-fight-ball {
        width: 56px;
        height: 56px;
    }

    .bw-ball-hp {
        font-size: 10px;
    }
}

.bw-fight-ball {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
}

.bw-game-box {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.bw-game-left {
    display: flex;
    flex-direction: column;
}

.bw-game-arena {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    backdrop-filter: blur(12px);
    padding: 32px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-damage-text {
    margin: 16px 0 0;
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.bw-damage-text #redDamageText {
    color: #ef4444;
    font-weight: 800;
}

.bw-damage-text #blueDamageText {
    color: #3b82f6;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .bw-game-box {
        grid-template-columns: 1fr;
    }
}

.bw-reset-btn {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.bw-reset-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.bw-record-section {
    margin-top: 40px;
    text-align: center;
}

.bw-record-title {
    font-size: 18px;
    opacity: 0.7;
}

.bw-record-value {
    font-size: 36px;
    font-weight: 800;
    margin-top: 6px;
}

.bw-progress-container {
    margin-top: 20px;
}

.bw-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.bw-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #ef4444);
    transition: width 0.4s ease;
}

.bw-progress-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.6;
}

.bw-record-info {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bw-hp-picker-block {
    align-items: center;
}

.bw-hp-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bw-hp-btn {
    min-width: 64px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.bw-hp-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.bw-hp-btn-active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.bw-gallery-section {
    margin-top: 40px;
}

.bw-gallery-section h2 {
    margin: 0 0 24px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bw-gallery-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bw-gallery-track-wrap {
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    padding: 18px;
}

.bw-gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

.bw-gallery-image {
    min-width: 100%;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.bw-gallery-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    flex-shrink: 0;
}

.bw-gallery-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .bw-gallery-wrap {
        gap: 10px;
    }

    .bw-gallery-image {
        height: 260px;
    }

    .bw-gallery-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

.bw-gallery-section {
    margin-top: 40px;
}

.bw-gallery-section h2 {
    margin: 0 0 28px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bw-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    overflow: hidden;
}

.bw-carousel-track {
    position: relative;
    width: 100%;
    height: 420px;
}

.bw-carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    pointer-events: none;
}

.bw-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.bw-carousel-item.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 3;
}

.bw-carousel-item.is-prev {
    transform: translate(calc(-50% - 250px), -50%) scale(0.78);
    opacity: 0.55;
    z-index: 2;
}

.bw-carousel-item.is-next {
    transform: translate(calc(-50% + 250px), -50%) scale(0.78);
    opacity: 0.55;
    z-index: 2;
}

.bw-carousel-item.is-hidden-left {
    transform: translate(calc(-50% - 430px), -50%) scale(0.55);
    opacity: 0.18;
    z-index: 1;
}

.bw-carousel-item.is-hidden-right {
    transform: translate(calc(-50% + 430px), -50%) scale(0.55);
    opacity: 0.18;
    z-index: 1;
}

.bw-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
}

.bw-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.bw-carousel-btn-left {
    left: 10px;
}

.bw-carousel-btn-right {
    right: 10px;
}

@media (max-width: 1100px) {
    .bw-carousel-track {
        height: 360px;
    }

    .bw-carousel-item {
        width: 280px;
        height: 280px;
    }

    .bw-carousel-item.is-prev {
        transform: translate(calc(-50% - 180px), -50%) scale(0.72);
    }

    .bw-carousel-item.is-next {
        transform: translate(calc(-50% + 180px), -50%) scale(0.72);
    }

    .bw-carousel-item.is-hidden-left {
        transform: translate(calc(-50% - 300px), -50%) scale(0.5);
    }

    .bw-carousel-item.is-hidden-right {
        transform: translate(calc(-50% + 300px), -50%) scale(0.5);
    }
}

@media (max-width: 768px) {
    .bw-carousel {
        min-height: 320px;
    }

    .bw-carousel-track {
        height: 280px;
    }

    .bw-carousel-item {
        width: 220px;
        height: 220px;
    }

    .bw-carousel-item.is-prev {
        transform: translate(calc(-50% - 120px), -50%) scale(0.68);
        opacity: 0.35;
    }

    .bw-carousel-item.is-next {
        transform: translate(calc(-50% + 120px), -50%) scale(0.68);
        opacity: 0.35;
    }

    .bw-carousel-item.is-hidden-left,
    .bw-carousel-item.is-hidden-right {
        opacity: 0;
    }

    .bw-carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}



.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.bw-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-hero-image {
    width: min(520px, 100%);
    height: auto;
    display: block;
}

.bw-token-section {
    margin-top: 96px;
    padding: 34px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.bw-token-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bw-token-left h2 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0;
}

.bw-token-left p {
    margin-top: 18px;
    max-width: 700px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.64);
}

.bw-token-info {
    margin-top: 28px;
}

.bw-token-row+.bw-token-row {
    margin-top: 22px;
}

.bw-mini-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.bw-token-value {
    font-size: 30px;
    font-weight: 800;
}

.bw-contract-box {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.72);
    word-break: break-all;
}

.bw-token-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.bw-token-actions button {
    border: 0;
    border-radius: 18px;
    padding: 14px 16px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.bw-token-actions button:hover {
    transform: translateY(-1px);
}

.bw-token-actions button:first-child {
    background: #fff;
    color: #000;
}

.bw-token-actions button:last-child {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.bw-token-chart {
    width: 100%;
}

.bw-chart-frame {
    width: 100%;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: #0a0a0a;
}

@media (max-width: 1024px) {
    .bw-token-layout {
        grid-template-columns: 1fr;
    }

    .bw-chart-frame {
        height: 360px;
    }
}

.bw-token-chart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bw-dex-crop {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0a;
    position: relative;
}

.bw-dex-frame {
    width: 100%;
    height: 760px;
    border: 0;
    display: block;
    transform: translateY(-120px);
}

.bw-roadmap {
    margin-top: 96px;
}

.bw-roadmap-intro {
    margin: 18px 0 0;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
}

.bw-roadmap-grid-modern {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.bw-roadmap-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.bw-roadmap-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.15) 100%);
    opacity: 0.9;
}

.bw-roadmap-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 50px rgba(255, 255, 255, 0.06);
}

.bw-roadmap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.bw-roadmap-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.bw-roadmap-card h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.bw-roadmap-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    font-size: 15px;
}

.bw-roadmap-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bw-roadmap-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.5;
}



@media (max-width: 768px) {
    .bw-roadmap-card {
        padding: 22px;
        border-radius: 24px;
    }

    .bw-roadmap-card h3 {
        font-size: 24px;
    }

    .bw-roadmap-intro {
        font-size: 16px;
    }
}

.bw-footer {
    margin-top: 120px;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.bw-footer-inner {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.bw-footer {
    margin-top: 140px;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.bw-footer-brand {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.25em;
}

.bw-footer-tag {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.bw-footer-links {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.bw-footer-links button {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bw-footer-links button:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.bw-footer-copy {
    margin-top: 32px;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
}

.bw-community-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.bw-community-btn {
    padding: 16px 28px;
    border-radius: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bw-community-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.bw-community-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.bw-community-link {
    background: none;
    border: none;
    color: white;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.bw-community-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #020202;

}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;

    border-radius: 8px;
    border: 2px solid #020202;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;

}


html {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #020202;
}



.bw-hero-centered {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 80px;
}

.bw-hero-copy-centered {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bw-hero-copy-centered h1 {
    margin: 0;
    text-align: center;
}

.bw-hero-copy-centered p {
    margin: 28px auto 0;
    max-width: 760px;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.bw-header,
.bw-chip,
.bw-hero-visual {
    display: none !important;
}



.bw-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}

.bw-hero-copy {
    max-width: 900px;
    margin: 0 auto;
}

.bw-hero-copy p {
    margin-left: auto;
    margin-right: auto;
}



.bw-token-section {
    margin-top: 96px;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bw-token-layout,
.bw-token-left,
.bw-token-info,
.bw-token-row,
.bw-token-actions {
    display: none !important;
}

.bw-token-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.bw-token-title {
    margin: 0;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}

.bw-token-ca {
    margin-top: 14px;
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.08em;
    word-break: break-all;
}

.bw-token-socials {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.bw-token-social {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bw-token-social svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: #fff;
    opacity: 0.96;
}

.bw-token-social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.bw-token-social:active {
    transform: translateY(0);
}

.bw-token-chart-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #050505;
}

.bw-token-chart-frame {
    width: 100%;
    height: 640px;
    border: 0;
    display: block;
}

.bw-token-social img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

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

.bw-roadmap .bw-label,
.bw-roadmap h2,
.bw-roadmap-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bw-roadmap-intro {
    max-width: 820px;
}

.bw-roadmap-grid-modern {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 48px;

    align-items: start;
}

.bw-roadmap-card {
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 8px;
    text-align: left;
}


.bw-roadmap-top {
    margin-bottom: 18px;
}

.bw-roadmap-dot {
    display: none;
}

.bw-roadmap-card h3 {
    margin: 0 0 18px;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.bw-roadmap-card p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
    font-size: 18px;
}

.bw-roadmap-list {
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.bw-roadmap-list li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.88);
}


@media (max-width: 900px) {
    .bw-roadmap-grid-modern {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .bw-roadmap-card {
        padding: 0;
    }
}


.bw-roadmap-card {
    border-left: none !important;
    padding-left: 0 !important;
}


.bw-roadmap-card,
.bw-roadmap-top,
.bw-roadmap-card h3,
.bw-roadmap-card p,
.bw-roadmap-list,
.bw-roadmap-list li {
    text-align: center !important;
}


.bw-roadmap-top {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}


.bw-roadmap-list {
    list-style-position: inside;
    padding-left: 0 !important;
    margin: 0 auto;
}


.bw-roadmap-list li {
    margin-bottom: 14px;
}

.bw-roadmap-card::before,
.bw-roadmap-card::after {
    display: none !important;
    content: none !important;
}

.bw-roadmap-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.bw-roadmap-list li::marker {
    content: "" !important;
}

.bw-roadmap-list li {
    list-style: none !important;
}



.bw-gallery-section,
.bw-game-section {
    text-align: center;
}

.bw-gallery-section .bw-label,
.bw-gallery-section h2,
.bw-game-section .bw-label,
.bw-game-section h2,
.bw-game-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.bw-game-intro {
    max-width: 760px;
}

.bw-token-section {
    margin-top: 70px;
}

.bw-roadmap {
    margin-top: 70px;
}

.bw-gallery-section {
    margin-top: 70px;
}

.bw-game-section {
    margin-top: 70px;
}



.bw-page {
    position: relative;
    overflow: hidden;
}

.bw-dots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bw-dots span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}


.bw-container,
.bw-hero,
.bw-token-section,
.bw-roadmap,
.bw-gallery-section,
.bw-game-section,
.bw-footer {
    position: relative;
    z-index: 1;
}

.bw-dots span:nth-child(11) {
    top: 95%;
    left: 18%;
}

.bw-dots span:nth-child(12) {
    top: 110%;
    left: 72%;
}

.bw-dots span:nth-child(13) {
    top: 125%;
    left: 36%;
}

.bw-dots span:nth-child(14) {
    top: 140%;
    left: 84%;
}

.bw-dots span:nth-child(15) {
    top: 155%;
    left: 12%;
}

.bw-dots span:nth-child(16) {
    top: 170%;
    left: 58%;
}

.bw-dots span:nth-child(17) {
    top: 185%;
    left: 28%;
}

.bw-dots span:nth-child(18) {
    top: 205%;
    left: 76%;
}

.bw-dots span:nth-child(11) {
    top: 8%;
    left: 28%;
}

.bw-dots span:nth-child(12) {
    top: 18%;
    left: 62%;
}

.bw-dots span:nth-child(13) {
    top: 26%;
    left: 88%;
}

.bw-dots span:nth-child(14) {
    top: 34%;
    left: 22%;
}

.bw-dots span:nth-child(15) {
    top: 42%;
    left: 57%;
}

.bw-dots span:nth-child(16) {
    top: 48%;
    left: 77%;
}

.bw-dots span:nth-child(17) {
    top: 56%;
    left: 14%;
}

.bw-dots span:nth-child(18) {
    top: 64%;
    left: 46%;
}

.bw-dots span:nth-child(19) {
    top: 72%;
    left: 83%;
}

.bw-dots span:nth-child(20) {
    top: 81%;
    left: 31%;
}

.bw-dots span:nth-child(21) {
    top: 92%;
    left: 68%;
}

.bw-dots span:nth-child(22) {
    top: 105%;
    left: 12%;
}

.bw-dots span:nth-child(23) {
    top: 116%;
    left: 39%;
}

.bw-dots span:nth-child(24) {
    top: 128%;
    left: 74%;
}

.bw-dots span:nth-child(25) {
    top: 139%;
    left: 24%;
}

.bw-dots span:nth-child(26) {
    top: 151%;
    left: 59%;
}

.bw-dots span:nth-child(27) {
    top: 163%;
    left: 87%;
}

.bw-dots span:nth-child(28) {
    top: 174%;
    left: 17%;
}

.bw-dots span:nth-child(29) {
    top: 186%;
    left: 48%;
}

.bw-dots span:nth-child(30) {
    top: 198%;
    left: 79%;
}

.bw-dots span:nth-child(31) {
    top: 210%;
    left: 9%;
}

.bw-dots span:nth-child(32) {
    top: 222%;
    left: 34%;
}

.bw-dots span:nth-child(33) {
    top: 235%;
    left: 66%;
}

.bw-dots span:nth-child(34) {
    top: 247%;
    left: 91%;
}

.bw-dots span:nth-child(35) {
    top: 259%;
    left: 21%;
}

.bw-dots span:nth-child(36) {
    top: 271%;
    left: 53%;
}

.bw-dots span:nth-child(37) {
    top: 284%;
    left: 82%;
}

.bw-dots span:nth-child(38) {
    top: 296%;
    left: 13%;
}

.bw-dots span:nth-child(39) {
    top: 308%;
    left: 41%;
}

.bw-dots span:nth-child(40) {
    top: 320%;
    left: 72%;
}

.bw-dots span:nth-child(41) {
    top: 333%;
    left: 26%;
}

.bw-dots span:nth-child(42) {
    top: 345%;
    left: 61%;
}

.bw-dots span:nth-child(43) {
    top: 357%;
    left: 86%;
}

.bw-dots span:nth-child(44) {
    top: 369%;
    left: 16%;
}

.bw-dots span:nth-child(45) {
    top: 381%;
    left: 44%;
}

.bw-dots span:nth-child(46) {
    top: 394%;
    left: 76%;
}

.bw-dots span:nth-child(47) {
    top: 406%;
    left: 7%;
}

.bw-dots span:nth-child(48) {
    top: 418%;
    left: 37%;
}

.bw-dots span:nth-child(49) {
    top: 430%;
    left: 69%;
}

.bw-dots span:nth-child(50) {
    top: 442%;
    left: 93%;
}

.bw-dots span:nth-child(51) {
    top: 455%;
    left: 19%;
}

.bw-dots span:nth-child(52) {
    top: 468%;
    left: 56%;
}



.reveal,
.reveal-right,
.reveal-up {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
    transform: translateX(-140px);
}

.reveal-right {
    transform: translateX(140px);
}

.reveal-up {
    transform: translateY(120px);
}

.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
    transition-delay: 0.18s;
}

.reveal-delay-2 {
    transition-delay: 0.32s;
}

.reveal-delay-3 {
    transition-delay: 0.46s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

html,
body,
a,
button,
input,
textarea,
select {
    cursor: none !important;
}

.bw-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #7c3aed 45%, #3b82f6 100%);
    box-shadow:
        0 0 12px rgba(239, 68, 68, 0.35),
        0 0 18px rgba(59, 130, 246, 0.35);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bw-cursor-hover {
    transform: translate(-50%, -50%) scale(1.45);
}

.bw-cursor-trails span {
    position: fixed;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(59, 130, 246, 0.9));
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
}

.bw-cursor-trails span:nth-child(1) {
    width: 12px;
    height: 12px;
    opacity: 0.32;
}

.bw-cursor-trails span:nth-child(2) {
    width: 10px;
    height: 10px;
    opacity: 0.26;
}

.bw-cursor-trails span:nth-child(3) {
    width: 9px;
    height: 9px;
    opacity: 0.22;
}

.bw-cursor-trails span:nth-child(4) {
    width: 8px;
    height: 8px;
    opacity: 0.18;
}

.bw-cursor-trails span:nth-child(5) {
    width: 7px;
    height: 7px;
    opacity: 0.14;
}

.bw-cursor-trails span:nth-child(6) {
    width: 6px;
    height: 6px;
    opacity: 0.1;
}

@media (max-width: 768px) {

    .bw-cursor,
    .bw-cursor-trails {
        display: none;
    }

    html,
    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto !important;
    }
}



html,
body,
a,
button,
input,
textarea,
select {
    cursor: none !important;
}

.bw-cursor-core {
    position: fixed;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 0 8px rgba(255, 255, 255, 0.7),
        0 0 14px rgba(59, 130, 246, 0.35),
        0 0 14px rgba(239, 68, 68, 0.35);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, opacity 0.2s ease;
}

.bw-cursor-core.bw-cursor-active {
    transform: translate(-50%, -50%) scale(1.6);
}

.bw-cursor-particles span {
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    filter: blur(0.2px);
}


.bw-cursor-particles span:nth-child(1) {
    width: 10px;
    height: 10px;
    background: rgba(239, 68, 68, 0.30);
    box-shadow: 0 0 10px rgba(239, 68, 68, .35);
}

.bw-cursor-particles span:nth-child(2) {
    width: 9px;
    height: 9px;
    background: rgba(59, 130, 246, 0.28);
    box-shadow: 0 0 10px rgba(59, 130, 246, .35);
}

.bw-cursor-particles span:nth-child(3) {
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.24);
    box-shadow: 0 0 8px rgba(239, 68, 68, .3);
}

.bw-cursor-particles span:nth-child(4) {
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.24);
    box-shadow: 0 0 8px rgba(59, 130, 246, .3);
}

.bw-cursor-particles span:nth-child(5) {
    width: 7px;
    height: 7px;
    background: rgba(239, 68, 68, 0.20);
    box-shadow: 0 0 8px rgba(239, 68, 68, .25);
}

.bw-cursor-particles span:nth-child(6) {
    width: 7px;
    height: 7px;
    background: rgba(59, 130, 246, 0.20);
    box-shadow: 0 0 8px rgba(59, 130, 246, .25);
}

.bw-cursor-particles span:nth-child(7) {
    width: 6px;
    height: 6px;
    background: rgba(239, 68, 68, 0.16);
}

.bw-cursor-particles span:nth-child(8) {
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, 0.16);
}

.bw-cursor-particles span:nth-child(9) {
    width: 5px;
    height: 5px;
    background: rgba(239, 68, 68, 0.14);
}

.bw-cursor-particles span:nth-child(10) {
    width: 5px;
    height: 5px;
    background: rgba(59, 130, 246, 0.14);
}

.bw-cursor-particles span:nth-child(11) {
    width: 4px;
    height: 4px;
    background: rgba(239, 68, 68, 0.12);
}

.bw-cursor-particles span:nth-child(12) {
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.12);
}

@media (max-width: 768px) {

    .bw-cursor-core,
    .bw-cursor-particles {
        display: none;
    }

    html,
    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto !important;
    }
}