* {
    box-sizing: border-box;
}

:root {
    --navy: #06101f;
    --navy2: #0d1b31;
    --navy3: #102849;
    --gold: #f6c945;
    --gold2: #ffe27a;
    --blue: #123f78;
    --text: #101827;
    --muted: #64748b;
    --bg: #eef3f8;
    --white: #ffffff;
    --line: rgba(15, 23, 42, .08);
    --shadow: 0 24px 70px rgba(15, 23, 42, .16);
    --shadow2: 0 34px 90px rgba(15, 23, 42, .24);
    --radius: 28px;
}

*::selection {
    background: var(--gold);
    color: var(--navy);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 8% 8%, rgba(18, 63, 120, .08), transparent 24%),
        linear-gradient(180deg, #f7fafc 0%, var(--bg) 100%);
    color: var(--text);
}

a {
    transition: .22s ease;
}

.site-hero {
    min-height: 500px;
    padding: 34px 42px 125px;
    background:
        radial-gradient(circle at 10% 18%, rgba(246, 201, 69, .18), transparent 26%),
        radial-gradient(circle at 92% 10%, rgba(18, 63, 120, .42), transparent 30%),
        linear-gradient(135deg, #050a13 0%, #07111f 45%, #102849 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .18;
    pointer-events: none;
}

.site-hero::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(246, 201, 69, .12);
    filter: blur(3px);
}

.hero-inner,
.hero-text {
    position: relative;
    z-index: 2;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(246, 201, 69, .26));
}

.hero-inner h1 {
    margin: 0;
    font-size: 42px;
    letter-spacing: 3.5px;
    font-weight: 900;
}

.hero-inner p {
    margin: 4px 0 0;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .4px;
}

.hero-text {
    max-width: 980px;
    margin-top: 86px;
}

.hero-text h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    font-weight: 900;
}

.hero-text p {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.65;
    color: #dbeafe;
    font-weight: 600;
}

.main-wrap {
    max-width: 1220px;
    margin: -82px auto 76px;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.home-hero-panel {
    margin-bottom: 28px;
    padding: 34px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(246, 201, 69, .18);
    color: #7a5a00;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
}

.home-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(246, 201, 69, .16);
}

.home-hero-panel h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
}

.home-hero-panel p {
    max-width: 820px;
    margin: 14px 0 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 600;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.district-card {
    overflow: hidden;
    display: block;
    min-height: 270px;
    border-radius: 28px;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    position: relative;
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.district-card:hover .district-image {
    transform: scale(1.05);
}

.district-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #0f172a;
    position: relative;
    transition: .35s ease;
}

.district-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,17,31,.08), rgba(7,17,31,.62)),
        radial-gradient(circle at 24% 18%, rgba(246, 201, 69, .28), transparent 28%);
}

.district-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(7, 17, 31, .76);
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    border: 1px solid rgba(246, 201, 69, .35);
}

.district-content {
    padding: 22px 22px 24px;
}

.district-content h3 {
    margin: 0 0 9px;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.3px;
}

.district-content span {
    color: #0f3a72;
    font-weight: 900;
}

.district-showcase {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 26px;
    align-items: stretch;
}

.district-copy,
.district-media,
.info-panel {
    background: rgba(255,255,255,.94);
    padding: 42px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, .07);
}

.district-copy h2,
.info-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 900;
}

.district-copy p,
.info-panel p {
    color: #334155;
    font-size: 18px;
    line-height: 1.85;
    font-weight: 600;
}

.district-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.video-box {
    min-height: 100%;
    height: 320px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 28% 18%, rgba(246, 201, 69, .22), transparent 26%),
        radial-gradient(circle at 85% 82%, rgba(18, 63, 120, .45), transparent 34%),
        linear-gradient(135deg, #0f172a, #06101f);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 900;
    overflow: hidden;
    position: relative;
}

.video-box::before {
    content: "▶";
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 28px;
    box-shadow: 0 20px 44px rgba(246, 201, 69, .26);
}

.video-box span {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 13px;
}

.video-box strong {
    max-width: 280px;
    font-size: 20px;
    line-height: 1.35;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 15px 30px;
    font-weight: 900;
    border-radius: 16px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #07111f;
    box-shadow: 0 14px 32px rgba(246, 201, 69, .30);
}

.secondary-btn {
    background: #eef4fb;
    color: #123f78;
    border: 1px solid rgba(18, 63, 120, .12);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
}

.join-box-wide {
    margin-top: 26px;
}

.join-box {
    display: block;
    margin-top: 24px;
    padding: 25px;
    background:
        radial-gradient(circle at 15% 20%, rgba(246, 201, 69, .20), transparent 26%),
        linear-gradient(135deg, #123f78, #0f2f5d);
    color: #fff;
    border-radius: 22px;
    text-decoration: none;
    box-shadow: 0 22px 54px rgba(18, 63, 120, .22);
}

.join-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(18, 63, 120, .30);
}

.join-box strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.join-box span {
    display: block;
    margin-top: 7px;
    color: var(--gold);
    font-weight: 900;
}

.form-input {
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    padding: 13px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    font-size: 15px;
    outline: none;
    background: #fff;
    transition: .2s ease;
}

.form-input:focus {
    border-color: #123f78;
    box-shadow: 0 0 0 5px rgba(18, 63, 120, .10);
}

label {
    display: block;
    font-weight: 900;
    color: #1e293b;
}

.site-footer {
    padding: 46px 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(246, 201, 69, .10), transparent 30%),
        #07111f;
    color: #fff;
    text-align: center;
}

.site-footer strong {
    font-size: 22px;
    letter-spacing: 1px;
}

.site-footer p {
    margin: 8px 0 20px;
    color: var(--gold);
    font-weight: 800;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.site-footer a {
    color: #dbe4f0;
    text-decoration: none;
    font-weight: 800;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-contact {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-contact:empty {
    display: none;
}

@media (max-width: 1080px) {
    .district-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .district-showcase {
        grid-template-columns: 1fr;
    }

    .video-box {
        min-height: 280px;
    }
}

@media (max-width: 820px) {
    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-hero {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 620px) {
    .site-hero {
        min-height: 390px;
        padding: 24px 18px 95px;
    }

    .hero-logo {
        width: 58px;
        height: 58px;
    }

    .hero-inner h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .hero-inner p {
        font-size: 12px;
    }

    .hero-text {
        margin-top: 54px;
    }

    .hero-text h2 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .main-wrap {
        margin-top: -58px;
        padding: 0 16px;
    }

    .home-hero-panel,
    .district-copy,
    .district-media,
    .info-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .district-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .district-card {
        min-height: 245px;
        border-radius: 24px;
    }

    .district-image {
        height: 145px;
    }

    .district-content h3 {
        font-size: 23px;
    }

    .district-copy h2,
    .info-panel h2 {
        font-size: 28px;
    }

    .district-copy p,
    .info-panel p {
        font-size: 16px;
    }

    .district-actions {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .video-box {
        height: 210px;
    }

    form {
        grid-template-columns: 1fr !important;
    }

    form > div {
        grid-column: 1 / -1 !important;
    }
}
.hero-menu-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(246, 201, 69, .35);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    color: #f6c945;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.hero-menu-btn:hover {
    background: rgba(246, 201, 69, .18);
    transform: translateY(-2px);
}

.ulass-side-menu {
    position: fixed;
    top: 0;
    left: -360px;
    width: 340px;
    max-width: 88vw;
    height: 100vh;
    z-index: 9999;
    background: linear-gradient(180deg, #ffffff, #eef3f8);
    box-shadow: 24px 0 70px rgba(15, 23, 42, .28);
    transition: .28s ease;
    padding: 24px;
}

.ulass-side-menu.active {
    left: 0;
}

.ulass-side-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: #07111f;
    color: #f6c945;
    font-size: 28px;
    cursor: pointer;
}

.ulass-side-head {
    text-align: center;
    padding: 24px 0 18px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.ulass-side-head img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.ulass-side-head strong {
    display: block;
    margin-top: 10px;
    font-size: 32px;
    letter-spacing: 3px;
    color: #07111f;
    font-weight: 900;
}

.ulass-side-head span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 900;
}

.ulass-side-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
}

.ulass-side-links a {
    display: block;
    padding: 15px 16px;
    border-radius: 16px;
    background: #ffffff;
    color: #07111f;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.ulass-side-links a:hover {
    transform: translateX(4px);
    color: #123f78;
}

.ulass-side-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(7, 17, 31, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: .28s ease;
}

.ulass-side-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 620px) {
    .hero-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 21px;
    }
}
.site-hero {
    min-height: 410px;
    padding: 42px 44px 92px;
}

.hero-inner {
    gap: 14px;
}

.hero-logo {
    width: 62px;
    height: 62px;
}

.hero-inner h1 {
    font-size: 36px;
    letter-spacing: 4px;
}

.hero-inner p {
    font-size: 15px;
}

.hero-text {
    margin-top: 72px;
    max-width: 760px;
}

.hero-text h2 {
    font-size: clamp(34px, 4.3vw, 54px);
    line-height: 1.08;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.5;
}

#ulassClock {
    font-size: 17px;
}

.main-wrap {
    max-width: 1180px;
    margin: -82px auto 64px;
}

.home-hero-panel {
    max-width: 980px;
    margin: 0 auto 26px;
    padding: 30px 34px;
    border-radius: 24px;
}

.home-hero-panel h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.12;
}

.home-hero-panel p {
    font-size: 16px;
    line-height: 1.55;
}

.home-kicker {
    font-size: 11px;
    padding: 7px 12px;
}

.platform-strip {
    max-width: 980px;
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.platform-strip div {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.platform-strip strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #07111f;
}

.platform-strip span {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #64748b;
    font-weight: 700;
}

.district-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.district-card {
    min-height: 218px;
    border-radius: 22px;
}

.district-image {
    height: 125px;
}

.district-content {
    padding: 16px 18px 18px;
}

.district-content h3 {
    font-size: 21px;
}

.district-content span {
    font-size: 14px;
}

@media (max-width: 820px) {
    .platform-strip {
        grid-template-columns: 1fr;
    }

    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .site-hero {
        min-height: 360px;
        padding: 28px 18px 82px;
    }

    .hero-logo {
        width: 50px;
        height: 50px;
    }

    .hero-inner h1 {
        font-size: 28px;
    }

    .hero-text {
        margin-top: 50px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .home-hero-panel {
        padding: 24px;
    }

    .district-grid {
        grid-template-columns: 1fr;
    }
}
.landing {
    position: fixed;
    inset: 0;
    background: #05070c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.landing::before {
    content: "";
    position: absolute;
    inset: -4%;
    background:
        linear-gradient(rgba(5,7,12,.18), rgba(5,7,12,.36)),
        url('/assets/img/hero/metal.jpg') center/cover no-repeat;
    filter: brightness(1.45) contrast(1.35) saturate(1.05);
    transform: scale(1.04);
    animation: landingZoom 14s ease-in-out infinite alternate;
    z-index: 0;
}

.landing::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(246,201,69,.18), transparent 20%),
        radial-gradient(circle at 76% 18%, rgba(246,201,69,.28), transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(246,201,69,.14), transparent 42%),
        linear-gradient(90deg, rgba(0,0,0,.55), transparent 28%, transparent 72%, rgba(0,0,0,.55)),
        linear-gradient(180deg, rgba(0,0,0,.35), transparent 38%, rgba(0,0,0,.42));
    pointer-events: none;
    z-index: 1;
}

.landing-overlay {
    display: none;
}

.landing-content {
    position: relative;
    text-align: center;
    z-index: 2;

    padding: 44px 52px;
    border-radius: 32px;

    background: linear-gradient(
        rgba(0,0,0,.28),
        rgba(0,0,0,.18)
    );

    border: 1px solid rgba(246,201,69,.22);

    box-shadow:
        0 0 80px rgba(246,201,69,.14),
        0 30px 90px rgba(0,0,0,.6),
        inset 0 0 30px rgba(255,255,255,.03);

    backdrop-filter: blur(5px);

    max-width: 760px;
    width: 90%;
}

.landing-content h1 {
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 900;
    letter-spacing: 6px;
    margin: 0;
    line-height: .95;
    color: #f6c945;
    text-shadow:
        0 0 14px rgba(246,201,69,.22),
        0 10px 30px rgba(0,0,0,.65);
}

.landing-content p {
    margin-top: 18px;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0,0,0,.65);
}

.landing-content span {
    display: inline-flex;
    margin-top: 24px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    color: #07111f;
    background: #f6c945;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(246,201,69,.22);
}

@keyframes landingZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.12); }
}
@media (max-width: 620px) {
    .landing {
        padding: 18px;
    }

    .landing-content {
        width: calc(100vw - 36px);
        max-width: 100%;
        padding: 38px 24px;
        border-radius: 28px;
        overflow: hidden;
    }

    .landing-content h1 {
        font-size: clamp(54px, 18vw, 76px);
        letter-spacing: 5px;
        line-height: .95;
        white-space: nowrap;
    }

    .landing-content p {
        font-size: 24px;
        line-height: 1.25;
        margin-top: 24px;
    }

    .landing-content span {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        line-height: 1.25;
        padding: 14px 18px;
    }
}
.landing-content {
    animation: landingCardIn .9s ease both;
}

.landing-content h1 {
    animation: ulassGlow 2.8s ease-in-out infinite alternate;
}

.landing-content span {
    animation: ctaPulse 1.8s ease-in-out infinite;
}

@keyframes landingCardIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ulassGlow {
    from {
        text-shadow:
            0 0 18px rgba(246,201,69,.25),
            0 16px 40px rgba(0,0,0,.65);
    }
    to {
        text-shadow:
            0 0 34px rgba(246,201,69,.55),
            0 0 70px rgba(246,201,69,.22),
            0 18px 44px rgba(0,0,0,.8);
    }
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 14px 34px rgba(246,201,69,.22);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 18px 48px rgba(246,201,69,.38);
    }
}
.platform-main {
    margin-top: -92px;
}

.platform-intro {
    max-width: 1080px;
    margin: 0 auto 26px;
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 34px 90px rgba(15,23,42,.16);
    border: 1px solid rgba(15,23,42,.08);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
}

.platform-intro h1 {
    margin: 0;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #07111f;
}

.platform-intro p {
    margin: 14px 0 0;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    font-weight: 600;
}

.platform-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 320px;
}

.platform-mosaic div {
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.platform-mosaic div:first-child {
    grid-row: span 2;
}

.platform-strip {
    max-width: 1080px;
}

.district-grid {
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 820px) {
    .platform-intro {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .platform-mosaic {
        height: 260px;
    }
}

@media (max-width: 620px) {
    .platform-main {
        margin-top: -62px;
    }

    .platform-intro h1 {
        font-size: 30px;
    }

    .platform-mosaic {
        height: 220px;
    }
}
.pro-header {
    min-height: 310px;
    padding: 26px 42px 86px;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.pro-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 30%, rgba(246,201,69,.14), transparent 28%),
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.26));
    pointer-events: none;
}

.pro-nav,
.pro-hero-text {
    position: relative;
    z-index: 2;
}

.pro-nav {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.pro-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.pro-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(246,201,69,.22));
}

.pro-brand strong {
    display: block;
    font-size: 31px;
    line-height: 1;
    letter-spacing: 5px;
    font-weight: 950;
}

.pro-brand span {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    color: #f6c945;
    font-weight: 900;
}

.pro-clock {
    margin-left: auto;
    color: #f6c945;
    font-size: 16px;
    font-weight: 950;
}

.pro-hero-text {
    max-width: 1120px;
    margin: 60px auto 0;
}

.pro-hero-text span {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(246,201,69,.14);
    color: #f6c945;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .8px;
}

.pro-hero-text h1 {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1px;
    font-weight: 950;
}

.pro-hero-text p {
    max-width: 620px;
    margin: 14px 0 0;
    color: #dbeafe;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
}

.platform-main {
    margin-top: -58px;
}

.platform-intro {
    max-width: 1040px;
    padding: 28px;
    border-radius: 26px;
}

.platform-intro h1 {
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.16;
    letter-spacing: -.6px;
}

.platform-intro p {
    font-size: 14px;
    line-height: 1.55;
}

.platform-mosaic {
    height: 250px;
}

.platform-strip div {
    padding: 14px 16px;
}

.platform-strip strong {
    font-size: 17px;
}

.platform-strip span {
    font-size: 13px;
}

.district-card {
    min-height: 205px;
}

.district-image {
    height: 112px;
}

.district-content h3 {
    font-size: 19px;
}

@media (max-width: 620px) {
    .pro-header {
        min-height: 300px;
        padding: 20px 18px 72px;
    }

    .pro-brand img {
        width: 44px;
        height: 44px;
    }

    .pro-brand strong {
        font-size: 25px;
        letter-spacing: 3px;
    }

    .pro-brand span {
        display: none;
    }

    .pro-hero-text {
        margin-top: 48px;
    }

    .pro-hero-text h1 {
        font-size: 29px;
    }

    .platform-intro {
        padding: 22px;
    }
}
.platform-dark {
    max-width: 1080px;
    margin: 0 auto 24px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 80% 20%, rgba(246,201,69,.16), transparent 32%),
        linear-gradient(135deg, #07111f, #101827);
    color: #fff;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    align-items: center;
    box-shadow: 0 34px 90px rgba(15,23,42,.22);
}

.platform-dark h1 {
    margin: 0;
    max-width: 560px;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.08;
    letter-spacing: -.9px;
}

.platform-dark p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
}

.platform-dark .secondary-btn {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.16);
}

.platform-dark-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 280px;
}

.platform-dark-visual div {
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    min-height: 130px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.platform-dark-visual div:first-child {
    grid-row: span 2;
}

.platform-stats {
    max-width: 1080px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.platform-stats div {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

.platform-stats strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #07111f;
}

.platform-stats span {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.district-grid-clean {
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 820px) {
    .platform-dark {
        grid-template-columns: 1fr;
    }

    .platform-dark-visual {
        height: 240px;
    }

    .platform-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .platform-dark {
        padding: 24px;
    }

    .platform-dark h1 {
        font-size: 28px;
    }
}
.wheel-page .pro-header {
    display: none;
}

.wheel-main {
    min-height: 100vh;
    background:
        linear-gradient(rgba(3,7,14,.55), rgba(3,7,14,.78)),
        url('/assets/img/hero/bus.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.wheel-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(246,201,69,.18), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(246,201,69,.14), transparent 30%);
    pointer-events: none;
}

.district-wheel-wrap {
    width: min(760px, 92vw);
    height: min(760px, 92vw);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.district-wheel {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: wheelPulse 4s ease-in-out infinite;
}

.wheel-center {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(6,16,31,.72);
    border: 1px solid rgba(246,201,69,.38);
    box-shadow:
        0 0 90px rgba(246,201,69,.18),
        0 28px 80px rgba(0,0,0,.55),
        inset 0 0 34px rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    color: #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wheel-center img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 10px;
}

.wheel-center strong {
    font-size: 34px;
    letter-spacing: 5px;
    color: #f6c945;
    font-weight: 950;
}

.wheel-center span {
    margin-top: 8px;
    font-size: 12px;
    color: #e2e8f0;
    font-weight: 900;
    letter-spacing: 1px;
}

.wheel-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 126px;
    min-height: 46px;
    margin-left: -63px;
    margin-top: -23px;
    transform:
        rotate(var(--angle))
        translate(0, -320px)
        rotate(calc(-1 * var(--angle)));
    border-radius: 999px;
    background: rgba(246,201,69,.94);
    color: #07111f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 36px rgba(0,0,0,.35),
        0 0 26px rgba(246,201,69,.22);
    border: 1px solid rgba(255,255,255,.35);
}

.wheel-btn:hover {
    background: #fff;
    transform:
        rotate(var(--angle))
        translate(0, -330px)
        rotate(calc(-1 * var(--angle)))
        scale(1.06);
}

.wheel-bottom {
    position: absolute;
    bottom: -76px;
    z-index: 4;
}

@keyframes wheelPulse {
    0%, 100% {
        filter: drop-shadow(0 0 18px rgba(246,201,69,.15));
    }
    50% {
        filter: drop-shadow(0 0 38px rgba(246,201,69,.35));
    }
}

@media (max-width: 820px) {
    .district-wheel-wrap {
        width: 92vw;
        height: 92vw;
    }

    .wheel-btn {
        width: 104px;
        min-height: 40px;
        margin-left: -52px;
        margin-top: -20px;
        font-size: 12px;
        transform:
            rotate(var(--angle))
            translate(0, -40vw)
            rotate(calc(-1 * var(--angle)));
    }

    .wheel-btn:hover {
        transform:
            rotate(var(--angle))
            translate(0, -41vw)
            rotate(calc(-1 * var(--angle)))
            scale(1.04);
    }

    .wheel-center {
        width: 180px;
        height: 180px;
    }

    .wheel-center strong {
        font-size: 27px;
    }
}

@media (max-width: 520px) {
    .wheel-main {
        padding: 18px;
    }

    .district-wheel-wrap {
        width: 96vw;
        height: 96vw;
    }

    .wheel-center {
        width: 145px;
        height: 145px;
    }

    .wheel-center img {
        width: 52px;
        height: 52px;
    }

    .wheel-center strong {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .wheel-center span {
        font-size: 9px;
    }

    .wheel-btn {
        width: 88px;
        min-height: 34px;
        margin-left: -44px;
        margin-top: -17px;
        font-size: 10px;
        transform:
            rotate(var(--angle))
            translate(0, -43vw)
            rotate(calc(-1 * var(--angle)));
    }

    .wheel-bottom {
        bottom: -66px;
        width: 100%;
    }
}
.wheel-main {
    background:
        linear-gradient(rgba(3,7,14,.38), rgba(3,7,14,.72)),
        url('/assets/img/hero/bus.jpg') center/cover no-repeat;
}

.district-wheel-wrap::before {
    content: "";
    position: absolute;
    inset: 62px;
    border-radius: 50%;
    border: 1px solid rgba(246,201,69,.24);
    box-shadow:
        0 0 60px rgba(246,201,69,.12),
        inset 0 0 70px rgba(246,201,69,.08);
}

.district-wheel-wrap::after {
    content: "";
    position: absolute;
    inset: 118px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.16);
}

.wheel-center {
    width: 210px;
    height: 210px;
    background: rgba(5,12,24,.82);
    border: 1px solid rgba(246,201,69,.42);
    box-shadow:
        0 0 100px rgba(246,201,69,.18),
        0 34px 90px rgba(0,0,0,.7),
        inset 0 0 40px rgba(255,255,255,.04);
}

.wheel-center img {
    width: 62px;
    height: 62px;
}

.wheel-center strong {
    font-size: 30px;
    letter-spacing: 6px;
}

.wheel-btn {
    width: 118px;
    min-height: 42px;
    margin-left: -59px;
    margin-top: -21px;
    background: rgba(6,16,31,.74);
    color: #f6c945;
    border: 1px solid rgba(246,201,69,.52);
    box-shadow:
        0 14px 36px rgba(0,0,0,.42),
        0 0 26px rgba(246,201,69,.16),
        inset 0 0 18px rgba(246,201,69,.05);
    backdrop-filter: blur(8px);
    font-size: 13px;
    letter-spacing: .2px;
}

.wheel-btn:hover {
    background: #f6c945;
    color: #07111f;
    border-color: #fff;
    box-shadow:
        0 18px 48px rgba(0,0,0,.5),
        0 0 44px rgba(246,201,69,.42);
}

.wheel-bottom .primary-btn {
    min-height: 48px;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 15px;
}

@media (max-width: 620px) {
    .district-wheel-wrap::before {
        inset: 38px;
    }

    .district-wheel-wrap::after {
        inset: 82px;
    }

    .wheel-btn {
        width: 82px;
        min-height: 32px;
        margin-left: -41px;
        margin-top: -16px;
        font-size: 9.5px;
    }
}
.district-wheel-wrap::before {
    animation: wheelRingSpin 28s linear infinite;
}

.district-wheel-wrap::after {
    animation: wheelRingSpinReverse 42s linear infinite;
}

.district-wheel {
    animation:
        wheelPulse 4s ease-in-out infinite,
        wheelSoftFloat 7s ease-in-out infinite;
}

.wheel-center {
    animation: centerBreath 4.5s ease-in-out infinite;
}

@keyframes wheelRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wheelRingSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes wheelSoftFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes centerBreath {
    0%, 100% {
        box-shadow:
            0 0 100px rgba(246,201,69,.18),
            0 34px 90px rgba(0,0,0,.7),
            inset 0 0 40px rgba(255,255,255,.04);
    }
    50% {
        box-shadow:
            0 0 135px rgba(246,201,69,.28),
            0 42px 110px rgba(0,0,0,.78),
            inset 0 0 50px rgba(255,255,255,.06);
    }
}
.wheel-main {
    background:
        linear-gradient(rgba(3,7,14,.40), rgba(3,7,14,.78)),
        url('/assets/img/ulass-logo.png') center/68% no-repeat,
        radial-gradient(circle at center, #182232 0%, #07111f 55%, #030712 100%);
}

.wheel-main::before {
    background:
        radial-gradient(circle at center, rgba(246,201,69,.18), transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.06), transparent 44%);
}

.district-wheel-wrap {
    transform: scale(.96);
}

.district-wheel-wrap::before {
    inset: 44px;
    border: 1px solid rgba(246,201,69,.34);
    box-shadow:
        0 0 90px rgba(246,201,69,.20),
        inset 0 0 90px rgba(246,201,69,.08);
}

.district-wheel-wrap::after {
    inset: 104px;
    border: 1px dashed rgba(246,201,69,.22);
}

.wheel-center {
    background: rgba(3,7,14,.76);
    backdrop-filter: blur(10px);
}
.wheel-center {
    position: absolute;
    left: 50%;
    top: 47% !important;
    width: 156px;
    height: 156px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background:
        radial-gradient(circle at 50% 38%, #101827 0%, #050914 42%, #000000 100%);
    border: 1px solid rgba(231,188,89,.48);
    box-shadow:
        0 0 42px rgba(231,188,89,.20),
        0 24px 66px rgba(0,0,0,.70),
        inset 0 1px 0 rgba(255,240,184,.08),
        inset 0 -24px 34px rgba(0,0,0,.72);
    backdrop-filter: none;
    z-index: 10;
}

.wheel-btn {
    transform:
        rotate(var(--angle))
        translate(0, -382px)
        rotate(calc(-1 * var(--angle)));
}

.wheel-btn:hover {
    transform:
        rotate(var(--angle))
        translate(0, -392px)
        rotate(calc(-1 * var(--angle)))
        scale(1.06);
}

.district-wheel-wrap::before {
    inset: 18px;
}

.district-wheel-wrap::after {
    inset: 92px;
}

.wheel-bottom {
    bottom: -92px;
}

@media (max-width: 820px) {
    .wheel-btn {
        transform:
            rotate(var(--angle))
            translate(0, -45vw)
            rotate(calc(-1 * var(--angle)));
    }

    .wheel-btn:hover {
        transform:
            rotate(var(--angle))
            translate(0, -46vw)
            rotate(calc(-1 * var(--angle)))
            scale(1.04);
    }
}

@media (max-width: 520px) {
    .wheel-center {
        width: 132px;
        height: 132px;
    }

    .wheel-btn {
        transform:
            rotate(var(--angle))
            translate(0, -48vw)
            rotate(calc(-1 * var(--angle)));
    }
}
/* MERKEZİ KÜÇÜLT */
.wheel-center {
    width: 150px;
    height: 150px;
}

/* BUTONLARI DIŞA TAŞI (güneş uçlarına) */
.wheel-btn {
    transform:
        rotate(var(--angle))
        translate(0, -440px)
        rotate(calc(-1 * var(--angle)));
}

.wheel-btn:hover {
    transform:
        rotate(var(--angle))
        translate(0, -452px)
        rotate(calc(-1 * var(--angle)))
        scale(1.08);
}

/* LOGO HALKASINI BİRAZ İNCELT */
.district-wheel-wrap::before {
    inset: 28px;
}

.district-wheel-wrap::after {
    inset: 110px;
}
/* WHEEL FINAL AYAR */
.wheel-main {
    min-height: 100vh;
    background:
        radial-gradient(circle at center, rgba(246,201,69,.12), transparent 34%),
        linear-gradient(rgba(3,7,14,.34), rgba(3,7,14,.82)),
        url('/assets/img/hero/emblem.jpg') center/720px no-repeat,
        #030712;
    padding: 34px;
}

.district-wheel-wrap {
    width: 920px;
    height: 920px;
    max-width: 94vw;
    max-height: 94vw;
    transform: none;
}

.wheel-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(3,7,14,.78);
    border: 1px solid rgba(246,201,69,.30);
    box-shadow:
        0 0 44px rgba(246,201,69,.16),
        inset 0 0 28px rgba(0,0,0,.55);
    z-index: 10;
}

.wheel-center img,
.wheel-center span {
    display: none;
}

.wheel-center strong {
    font-size: 25px;
    letter-spacing: 5px;
    line-height: 1;
}

.wheel-btn {
    width: 128px;
    min-height: 40px;
    margin-left: -64px;
    margin-top: -20px;
    font-size: 13px;
    background: rgba(3,7,14,.82);
    color: #f6c945;
    border: 1px solid rgba(246,201,69,.55);
    box-shadow:
        0 0 28px rgba(246,201,69,.20),
        0 14px 34px rgba(0,0,0,.42);
    transform:
        rotate(var(--angle))
        translate(0, -430px)
        rotate(calc(-1 * var(--angle)));
}

.wheel-btn:hover {
    background: #f6c945;
    color: #07111f;
    transform:
        rotate(var(--angle))
        translate(0, -438px)
        rotate(calc(-1 * var(--angle)))
        scale(1.05);
}

.district-wheel-wrap::before {
    inset: 92px;
    border: 1px solid rgba(246,201,69,.20);
}

.district-wheel-wrap::after {
    inset: 186px;
    border: 1px dashed rgba(246,201,69,.16);
}

.wheel-bottom {
    bottom: -46px;
}

@media (max-width: 820px) {
    .wheel-main {
        background-size: 92vw;
    }

    .district-wheel-wrap {
        width: 96vw;
        height: 96vw;
    }

    .wheel-btn {
        width: 92px;
        min-height: 32px;
        margin-left: -46px;
        margin-top: -16px;
        font-size: 10px;
        transform:
            rotate(var(--angle))
            translate(0, -46vw)
            rotate(calc(-1 * var(--angle)));
    }

    .wheel-center {
        width: 92px;
        height: 92px;
    }

    .wheel-center strong {
        font-size: 18px;
        letter-spacing: 3px;
    }
}
/* WHEEL RESTORE + FINAL */
.wheel-main {
    min-height: 100vh;
   background:
    linear-gradient(rgba(3,7,14,.30), rgba(3,7,14,.78)),
    url('/assets/img/ulass-logo.png') center/880px no-repeat,
    radial-gradient(circle at center, #101827 0%, #07111f 48%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
}

.district-wheel-wrap {
    width: 860px;
    height: 860px;
    max-width: 94vw;
    max-height: 94vw;
    transform: none;
}

.wheel-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 96px;
    height: 96px;
    transform: translate(-50%, -50%);
    background: rgba(3,7,14,.72);
    border: 1px solid rgba(246,201,69,.28);
    z-index: 10;
}

.wheel-center img,
.wheel-center span {
    display: none;
}

.wheel-center strong {
    font-size: 22px;
    letter-spacing: 4px;
}

.wheel-btn {
    width: 124px;
    min-height: 38px;
    margin-left: -62px;
    margin-top: -19px;
    background: rgba(3,7,14,.82);
    color: #f6c945;
    border: 1px solid rgba(246,201,69,.55);
    transform:
        rotate(var(--angle))
        translate(0, -405px)
        rotate(calc(-1 * var(--angle)));
}

.wheel-btn:hover {
    background: #f6c945;
    color: #07111f;
    transform:
        rotate(var(--angle))
        translate(0, -415px)
        rotate(calc(-1 * var(--angle)))
        scale(1.05);
}

.district-wheel-wrap::before {
    inset: 52px;
    border: 1px solid rgba(246,201,69,.24);
}

.district-wheel-wrap::after {
    inset: 146px;
    border: 1px dashed rgba(246,201,69,.16);
}

.wheel-bottom {
    bottom: -54px;
}
/* WHEEL CLEAN FINAL - CINEMATIC PREMIUM */
.district-wheel-wrap::before,
.district-wheel-wrap::after {
    display: none !important;
}

.wheel-main {
    min-height: 100vh;
    padding: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgba(255,218,126,.18), transparent 30%),
        radial-gradient(circle at 50% 46%, rgba(214,171,74,.10), transparent 44%),
        radial-gradient(circle at 20% 80%, rgba(214,171,74,.08), transparent 34%),
        linear-gradient(180deg, rgba(1,5,13,.22), rgba(1,5,13,.84)),
        url('/assets/img/ulass-logo.png') center/800px no-repeat,
        #020711;
    display: flex;
    align-items: center;
    justify-content: center;
}

.district-wheel-wrap {
    width: 860px;
    height: 860px;
    max-width: 94vw;
    max-height: 94vw;
    position: relative;
    transform: none;
}

.wheel-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 46%, transparent 0 21%, rgba(0,0,0,.18) 38%, rgba(0,0,0,.52) 76%),
        linear-gradient(90deg, rgba(0,0,0,.32), transparent 22%, transparent 78%, rgba(0,0,0,.32));
    pointer-events: none;
    z-index: 1;
}

.wheel-main::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255,234,168,.06) 42%, transparent 58%);
    transform: rotate(-8deg);
    pointer-events: none;
    z-index: 1;
}

.district-wheel,
.district-wheel-wrap,
.wheel-center,
.wheel-btn,
.wheel-bottom {
    position: relative;
    z-index: 2;
}

.wheel-center {
    position: absolute;
    left: 50%;
    top: 47% !important;
    width: 156px;
    height: 156px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,228,146,.12), transparent 36%),
        linear-gradient(145deg, rgba(8,17,32,.92), rgba(1,5,13,.96));
    border: 1px solid rgba(231,188,89,.42);
    box-shadow:
        0 0 46px rgba(231,188,89,.20),
        0 24px 66px rgba(0,0,0,.62),
        inset 0 1px 0 rgba(255,240,184,.12),
        inset 0 -24px 34px rgba(0,0,0,.32);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.wheel-center img,
.wheel-center span {
    display: none;
}

.wheel-center strong {
    display: block;
    margin: 0;
    transform: translateY(-2px);
    text-align: center;
    line-height: 1;
    font-size: 26px;
    letter-spacing: 6px;
    font-weight: 1000;

    background: linear-gradient(145deg, #fff4bd 0%, #e7bd54 40%, #a87824 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

   text-shadow:
    0 0 6px rgba(231,188,89,.45),
    0 0 12px rgba(231,188,89,.30),
    0 4px 10px rgba(0,0,0,.90);

    position: relative;
}

/* ALTIN HALO (hafif aura) */
.wheel-center strong::after {
    content: "ULASS";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(231,188,89,.18);
    filter: blur(2.5px);
opacity: .55;
    z-index: -1;
}
.wheel-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 164px;
    min-height: 48px;
    margin-left: -82px;
    margin-top: -24px;
    border-radius: 999px;
    background:
        linear-gradient(145deg, #f7dc8b 0%, #d7a83d 42%, #9a6419 100%);
    color: #07111f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,235,170,.72);
    box-shadow:
        0 0 20px rgba(215,168,61,.25),
        0 15px 34px rgba(0,0,0,.48),
        inset 0 1px 0 rgba(255,255,255,.34),
        inset 0 -13px 20px rgba(77,46,6,.30);
    text-shadow: 0 1px 0 rgba(255,255,255,.35);
    transform:
        rotate(var(--angle))
        translate(0, -405px)
        rotate(calc(-1 * var(--angle)));
    transition: .22s ease;
}

.wheel-btn:hover {
    background:
        linear-gradient(145deg, #07111f 0%, #0b2447 58%, #123f78 100%);
    color: #f7dc8b;
    border-color: rgba(247,220,139,.90);
    box-shadow:
        0 0 34px rgba(18,63,120,.48),
        0 0 26px rgba(215,168,61,.36),
        0 22px 56px rgba(0,0,0,.62),
        inset 0 1px 0 rgba(255,255,255,.10);
    text-shadow: 0 0 12px rgba(247,220,139,.46);
    transform:
        rotate(var(--angle))
        translate(0, -415px)
        rotate(calc(-1 * var(--angle)))
        scale(1.045);
}
.wheel-bottom {
    position: absolute;
    left: 50%;
    top: calc(47% + 150px);
    bottom: auto;
    transform: translateX(-50%);
    z-index: 12;
}

.wheel-bottom .primary-btn {
    min-width: 330px;
    min-height: 50px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 950;
    color: #f7dc8b;
    background:
        linear-gradient(145deg, rgba(7,17,31,.96), rgba(9,29,56,.96));
    border: 1px solid rgba(247,220,139,.52);
    box-shadow:
        0 0 24px rgba(215,168,61,.22),
        0 16px 42px rgba(0,0,0,.54),
        inset 0 1px 0 rgba(255,255,255,.10);
    text-shadow: 0 0 12px rgba(247,220,139,.32);
}

.wheel-bottom .primary-btn:hover {
    background:
        linear-gradient(145deg, #f7dc8b 0%, #d7a83d 48%, #9a6419 100%);
    color: #07111f;
}
@media (max-width: 820px) {
    .wheel-main {
        padding: 22px;
        background-size: 92vw;
    }

    .district-wheel-wrap {
        width: 96vw;
        height: 96vw;
    }

    .wheel-center {
        width: 104px;
        height: 104px;
    }

    .wheel-center strong {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .wheel-btn {
        width: 94px;
        min-height: 34px;
        margin-left: -47px;
        margin-top: -17px;
        font-size: 10px;
        transform:
            rotate(var(--angle))
            translate(0, -46vw)
            rotate(calc(-1 * var(--angle)));
    }

    .wheel-btn:hover {
        transform:
            rotate(var(--angle))
            translate(0, -47vw)
            rotate(calc(-1 * var(--angle)))
            scale(1.04);
    }

    .wheel-bottom {
        bottom: -54px;
    }

    .wheel-bottom .primary-btn {
        min-width: 260px;
        min-height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .wheel-main {
        padding: 18px;
    }

    .wheel-center {
        width: 92px;
        height: 92px;
    }

    .wheel-center strong {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .wheel-btn {
        width: 82px;
        min-height: 31px;
        margin-left: -41px;
        margin-top: -15.5px;
        font-size: 9px;
        transform:
            rotate(var(--angle))
            translate(0, -47vw)
            rotate(calc(-1 * var(--angle)));
    }

    .wheel-bottom .primary-btn {
        min-width: 230px;
    }
}
/* ORTA ULASS YAZISI HİZALAMA */
.wheel-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.wheel-center strong {
    display: block;
    margin: 0;
    transform: translateY(-3px);
    text-align: center;
    line-height: 1;
}
/* ORTA SİYAH DİSKİ YUKARI AL */
.wheel-center {
    top: 47% !important;
}
/* FINAL OVERRIDE - ULASS MERKEZ SİYAH DİSK */
.wheel-page .wheel-center {
    position: absolute !important;
    left: 50% !important;
    top: 47% !important;
    width: 156px !important;
    height: 156px !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    background: #000000 !important;
    background-image:
        radial-gradient(circle at 50% 35%, #111827 0%, #030712 38%, #000000 72%) !important;
    border: 1px solid rgba(231,188,89,.55) !important;
    box-shadow:
        0 0 44px rgba(231,188,89,.24),
        0 24px 66px rgba(0,0,0,.78),
        inset 0 1px 0 rgba(255,240,184,.09),
        inset 0 -28px 36px rgba(0,0,0,.86) !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
    z-index: 20 !important;
}

.wheel-page .wheel-center strong {
    opacity: 1 !important;
    color: #f7dc8b !important;
    -webkit-text-fill-color: #f7dc8b !important;
}
/* FINAL OVERRIDE - MOBİL WHEEL DÜZENİ */
@media (max-width: 620px) {
    .wheel-main {
        min-height: 100vh !important;
        padding: 52px 0 120px !important;
        align-items: flex-start !important;
        overflow-x: hidden !important;
        background-size: 560px !important;
        background-position: center 88px !important;
    }

    .district-wheel-wrap {
        width: 390px !important;
        height: 390px !important;
        max-width: 100vw !important;
        max-height: none !important;
        margin: 0 auto !important;
        transform: none !important;
    }

    .wheel-page .wheel-center {
        width: 118px !important;
        height: 118px !important;
        top: 48% !important;
    }

    .wheel-page .wheel-center strong {
        font-size: 21px !important;
        letter-spacing: 4px !important;
    }

    .wheel-btn {
        width: 92px !important;
        min-height: 34px !important;
        margin-left: -46px !important;
        margin-top: -17px !important;
        font-size: 9px !important;
        letter-spacing: .45px !important;
        transform:
            rotate(var(--angle))
            translate(0, -148px)
            rotate(calc(-1 * var(--angle))) !important;
    }

    .wheel-btn:hover {
        transform:
            rotate(var(--angle))
            translate(0, -154px)
            rotate(calc(-1 * var(--angle)))
            scale(1.04) !important;
    }

    .wheel-bottom {
        position: absolute !important;
        left: 50% !important;
        top: 365px !important;
        bottom: auto !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        z-index: 30 !important;
    }

    .wheel-bottom .primary-btn {
        min-width: 270px !important;
        width: 270px !important;
        min-height: 46px !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
}