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

body {
    font-family: 'PT Sans', sans-serif;
    background-color: #323234;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

.wr4pp3r-m41n {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #00fbc8;
    transition: color 0.3s ease;
}

a:hover {
    color: #00d4aa;
}

img {
    max-width: 100%;
    height: auto;
}

.h34d3r-m41n {
    background: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.c0nt41n3r-fl3x {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.h34d3r-t0p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.l0g0-bl0ck .l0g0-1mg {
    height: 50px;
    width: auto;
}

.n4v-m3nu {
    flex: 1;
}

.m3nu-l1st {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.n4v-l1nk {
    color: #ffffff;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.n4v-l1nk:hover {
    background: #ff2e09;
    color: #fff;
}

.h34d3r-r1ght {
    display: flex;
    align-items: center;
    gap: 20px;
}

.0nl1n3-c0unt3r {
    background: #1a1a1c;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.0nl1n3-1c0n {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.4uth-butt0ns {
    display: flex;
    gap: 10px;
}

.btn-l0g1n {
    background: #00fbc8;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid #00fbc8;
}

.btn-l0g1n:hover {
    background: transparent;
    color: #00fbc8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 251, 200, 0.3);
}

.btn-r3g1st3r {
    background: #ff2e09;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid #ff2e09;
}

.btn-r3g1st3r:hover {
    background: transparent;
    color: #ff2e09;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 46, 9, 0.3);
}

.burg3r-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burg3r-btn span {
    width: 30px;
    height: 3px;
    background: #00fbc8;
    transition: all 0.3s;
    border-radius: 2px;
}

.burg3r-btn.act1v3 span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burg3r-btn.act1v3 span:nth-child(2) {
    opacity: 0;
}

.burg3r-btn.act1v3 span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.m0b1l3-m3nu {
    display: none;
    background: #1a1a1c;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
}

.m0b1l3-m3nu.act1v3 {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.m0b-m3nu-l1st {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.m0b-l1nk {
    color: #ffffff;
    font-weight: 700;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.m0b-l1nk:hover {
    background: #ff2e09;
}

.h3r0-s3ct10n {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.sl1d3r-c0nt41n3r {
    position: relative;
    height: 100%;
}

.sl1d3-1t3m {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sl1d3-1t3m.act1v3 {
    opacity: 1;
    z-index: 1;
}

.h3r0-1mg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.sl1d3-c0nt3nt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.sl1d3-t1tl3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

.sl1d3-t3xt {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-h3r0 {
    background: linear-gradient(135deg, #ff2e09, #ff6b09);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 46, 9, 0.4);
    animation: fadeInUp 1.4s ease;
}

.btn-h3r0:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 46, 9, 0.6);
}

.sl1d3r-d0ts {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.d0t {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.d0t.act1v3 {
    background: #ff2e09;
    transform: scale(1.3);
}

.c0nt41n3r-m4x {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.m41n-c0nt3nt {
    flex: 1;
}

.c0nt3nt-bl0ck5 {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.s3ct10n-c0nt41n3r {
    background: #2a2a2c;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.s3ct10n-c0nt41n3r:hover {
    transform: translateY(-5px);
}

.s3ct10n-h34d1ng {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.s3ct10n-h34d1ng::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00fbc8, #ff2e09);
    border-radius: 2px;
}

.m1rr0rs-s3ct10n .upd4t3-t1m3 {
    text-align: center;
    font-size: 14px;
    color: #00fbc8;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.t4bl3-wr4pp3r {
    overflow-x: auto;
    margin-bottom: 20px;
}

.m1rr0rs-t4bl3 {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1c;
    border-radius: 10px;
    overflow: hidden;
}

.m1rr0rs-t4bl3 thead {
    background: linear-gradient(135deg, #00fbc8, #00d4aa);
}

.m1rr0rs-t4bl3 th {
    padding: 15px;
    text-align: left;
    color: #000;
    font-weight: 700;
    border: 2px solid #323234;
}

.m1rr0rs-t4bl3 td {
    padding: 15px;
    border: 2px solid #323234;
    color: #e0e0e0;
}

.m1rr0rs-t4bl3 tbody tr:hover {
    background: #252527;
}

.m1rr0r-url {
    color: #00fbc8;
    font-weight: 700;
}

.st4tus-0nl1n3 {
    color: #4caf50;
    font-weight: 700;
}

.btn-m1rr0r {
    background: #ff2e09;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.btn-m1rr0r:hover {
    background: #00fbc8;
    color: #000;
    transform: scale(1.05);
}

.m1rr0r-n0t3 {
    background: #1a1a1c;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #00fbc8;
}

.m1rr0r-n0t3 p {
    margin: 0;
    color: #e0e0e0;
}

.scr33ns-gr1d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.scr33n-1t3m {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    background: #1a1a1c;
}

.scr33n-1t3m:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 251, 200, 0.2);
}

.scr33n-1mg {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.scr33n-c4pt10n {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

.scr33ns-sl1d3r {
    display: none;
}

.scr33ns-d0ts {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.scr-d0t {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.scr-d0t.act1v3 {
    background: #00fbc8;
}

.t0urn4-gr1d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.t0urn4-c4rd {
    background: #1a1a1c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.t0urn4-c4rd:hover {
    border-color: #00fbc8;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 251, 200, 0.3);
}

.t0urn4-h34d3r {
    background: linear-gradient(135deg, #ff2e09, #ff6b09);
    padding: 20px;
}

.t0urn4-t1tl3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.t0urn4-b0dy {
    padding: 25px;
}

.t0urn4-d3sc {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.t0urn4-pr1z3 {
    background: #252527;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
}

.t0urn4-pr1z3 strong {
    color: #00fbc8;
    font-size: 24px;
}

.t0urn4-t1m3r {
    text-align: center;
    color: #ff2e09;
    font-weight: 700;
    font-size: 16px;
}

.t1m3r-d1spl4y {
    font-size: 20px;
    color: #00fbc8;
}

.t0urn4-f00t3r {
    padding: 0 25px 25px;
}

.btn-t0urn4 {
    background: #00fbc8;
    color: #000;
    padding: 12px;
    border-radius: 25px;
    font-weight: 700;
    display: block;
    text-align: center;
    transition: all 0.3s;
}

.btn-t0urn4:hover {
    background: #ff2e09;
    color: #fff;
    transform: scale(1.05);
}

.t0urn4-sl1d3r {
    display: none;
}

.t0urn4-d0ts {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.t-d0t {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.t-d0t.act1v3 {
    background: #ff2e09;
}

.v1d30-wr4pp3r {
    max-width: 900px;
    margin: 0 auto;
}

.v1d30-c0nt41n3r {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.v1d30-1fr4m3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.v1d30-d3scr1pt10n {
    margin-top: 25px;
    text-align: center;
    color: #b0b0b0;
}

.sl0t-g4m3-wr4pp3r {
    max-width: 600px;
    margin: 0 auto;
}

.sl0t-m4ch1n3 {
    background: linear-gradient(135deg, #1a1a1c, #2a2a2c);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
}

.sl0t-r33ls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.r33l {
    width: 120px;
    height: 120px;
    background: #000;
    border: 4px solid #00fbc8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: inset 0 0 20px rgba(0, 251, 200, 0.3);
}

.r33l.sp1nn1ng .r33l-symb0l {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.sp1n-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff2e09, #ff6b09);
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 46, 9, 0.4);
}

.sp1n-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 46, 9, 0.6);
}

.sp1n-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.w1n-m3ss4g3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    z-index: 100;
    border: 3px solid #00fbc8;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.w1n-c0nt3nt h3 {
    color: #00fbc8;
    font-size: 32px;
    margin-bottom: 15px;
}

.w1n-c0nt3nt p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
}

.btn-cl41m {
    background: #ff2e09;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cl41m:hover {
    background: #00fbc8;
    color: #000;
    transform: scale(1.1);
}

.g4m3-1nf0 {
    margin-top: 25px;
    text-align: center;
    color: #b0b0b0;
}

.4uth0r-c4rd {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #1a1a1c;
    padding: 30px;
    border-radius: 15px;
}

.4uth0r-1m4g3 {
    flex-shrink: 0;
}

.4uth0r-ph0t0 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00fbc8;
}

.4uth0r-n4m3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.4uth0r-t1tl3 {
    color: #00fbc8;
    font-size: 16px;
    margin-bottom: 15px;
}

.4uth0r-b10 {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.4uth0r-s0c14ls {
    display: flex;
    gap: 15px;
}

.s0c14l-l1nk {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #252527;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s;
}

.s0c14l-l1nk:hover {
    background: #00fbc8;
    color: #000;
    transform: translateY(-3px);
}

.txt-c0nt3nt-wr4pp3r {
    background: #2a2a2c;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.m41n-h34d1ng {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.us3r-c0nt3nt-4r34 {
    color: #e0e0e0;
    line-height: 1.8;
}

.us3r-c0nt3nt-4r34 h2 {
    color: #00fbc8;
    margin: 30px 0 15px;
    font-size: 28px;
}

.us3r-c0nt3nt-4r34 h3 {
    color: #ff2e09;
    margin: 25px 0 12px;
    font-size: 24px;
}

.us3r-c0nt3nt-4r34 p {
    margin-bottom: 20px;
}

.us3r-c0nt3nt-4r34 ul, .us3r-c0nt3nt-4r34 ol {
    margin: 20px 0;
    padding-left: 30px;
}

.us3r-c0nt3nt-4r34 li {
    margin-bottom: 10px;
}

.us3r-c0nt3nt-4r34 table {
    width: 100%;
    margin: 25px auto;
    border-collapse: collapse;
    background: #1a1a1c;
    max-width: 800px;
}

.us3r-c0nt3nt-4r34 th {
    background: #00fbc8;
    color: #000;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border: 2px solid #323234;
}

.us3r-c0nt3nt-4r34 td {
    padding: 15px;
    border: 2px solid #323234;
}

.us3r-c0nt3nt-4r34 blockquote {
    border-left: 4px solid #ff2e09;
    padding: 20px;
    margin: 25px 0;
    background: #1a1a1c;
    border-radius: 5px;
}

.f00t3r-m41n {
    background: #000000;
    color: #b0b0b0;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.f00t3r-c0nt41n3r {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.f00t3r-t0p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.f-l0g0-1mg {
    height: 50px;
}

.f00t3r-n4v .f-m3nu-l1st {
    display: flex;
    gap: 25px;
    list-style: none;
}

.f-l1nk {
    color: #b0b0b0;
    transition: color 0.3s;
}

.f-l1nk:hover {
    color: #00fbc8;
}

.f00t3r-p4ym3nts, .f00t3r-pr0v1d3rs {
    margin-bottom: 30px;
}

.f-s3ct10n-t1tl3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.p4ym3nt-1c0ns, .pr0v1d3r-1c0ns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.p4ym3nt-1c0ns img, .pr0v1d3r-1c0ns img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.p4ym3nt-1c0ns img:hover, .pr0v1d3r-1c0ns img:hover {
    opacity: 1;
}

.f00t3r-l3g4l {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.l3g4l-t3xt, .d1scl41m3r {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #888;
}

.f00t3r-l1nks {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.l3g4l-l1nk {
    color: #888;
    font-size: 14px;
    transition: color 0.3s;
}

.l3g4l-l1nk:hover {
    color: #00fbc8;
}

.f1x3d-w1dg3t {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff2e09, #ff6b09);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 9999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.f1x3d-w1dg3t.h1dd3n {
    display: none;
}

.w1dg3t-c0nt3nt {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.w1dg3t-t3xt {
    color: #fff;
    font-size: 18px;
}

.w1dg3t-btn {
    background: #fff;
    color: #ff2e09;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid #fff;
    text-decoration: none !important;
}

.w1dg3t-btn:hover {
    background: #00fbc8;
    color: #000;
    border-color: #00fbc8;
    transform: scale(1.05);
}

.w1dg3t-cl0s3 {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .n4v-m3nu {
        display: none;
    }

    .burg3r-btn {
        display: flex;
    }

    .sl1d3-t1tl3 {
        font-size: 32px;
    }

    .sl1d3-t3xt {
        font-size: 16px;
    }

    .scr33ns-gr1d {
        display: none;
    }

    .scr33ns-sl1d3r {
        display: block;
    }

    .scr33ns-d0ts {
        display: flex;
    }

    .t0urn4-gr1d {
        display: none;
    }

    .t0urn4-sl1d3r {
        display: block;
    }

    .t0urn4-d0ts {
        display: flex;
    }

    .4uth0r-c4rd {
        flex-direction: column;
        text-align: center;
    }

    .f00t3r-t0p {
        flex-direction: column;
        gap: 20px;
    }

    .f00t3r-n4v .f-m3nu-l1st {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .h34d3r-t0p {
        flex-wrap: nowrap;
    }

    .0nl1n3-c0unt3r {
        font-size: 12px;
        padding: 6px 10px;
    }

    .4uth-butt0ns {
        position: relative;
    }

    .btn-l0g1n, .btn-r3g1st3r {
        padding: 8px 18px;
        font-size: 14px;
    }

    .h3r0-s3ct10n {
        height: 400px;
    }

    .sl1d3-t1tl3 {
        font-size: 24px;
    }

    .sl1d3-t3xt {
        font-size: 14px;
    }

    .s3ct10n-c0nt41n3r {
        padding: 25px 15px;
    }

    .s3ct10n-h34d1ng {
        font-size: 24px;
    }

    .sl0t-r33ls {
        gap: 10px;
    }

    .r33l {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .w1dg3t-c0nt3nt {
        flex-direction: column;
        gap: 15px;
    }

    .w1dg3t-t3xt {
        font-size: 16px;
    }
}

.un1qu3-bl0ck-x7y {
    display: none;
}

.r4nd0m-cl4ss-9k2 {
    visibility: hidden;
}

.h1dd3n-3l3m3nt-5p9 {
    opacity: 0;
    position: absolute;
}
.lngd {
    max-width: 980px;
    margin: 32px auto;
    padding: 40px 32px 56px;
    background: linear-gradient(180deg, #2f2f31 0%, #262628 100%);
    border: 1px solid #444448;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    color: #e8e8e8;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.lngd > * {
    min-width: 0;
}

.lngd h1,
.lngd h2,
.lngd h3 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.22;
}

.lngd h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 24px;
}

.lngd h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4a4a4d;
}

.lngd h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    margin: 28px 0 12px;
}

.lngd p {
    margin: 0 0 18px;
    color: #d8d8d8;
}

.lngd a {
    color: #00fbc8;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.lngd a:hover {
    color: #00d7ac;
}

.lngd ul,
.lngd ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.lngd li {
    margin-bottom: 12px;
    color: #d8d8d8;
}

.lngd li::marker {
    color: #00fbc8;
}

.lngd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(0, 251, 200, 0.06);
    border-left: 4px solid #00fbc8;
    border-radius: 0 14px 14px 0;
}

.lngd blockquote p:last-child {
    margin-bottom: 0;
}

.lngd table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #222224;
    border: 1px solid #444448;
    border-radius: 16px;
}

.lngd th {
    background: rgba(0, 251, 200, 0.12);
    color: #00fbc8;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #444448;
    white-space: nowrap;
}

.lngd td {
    padding: 14px 16px;
    border-top: 1px solid #39393d;
    vertical-align: top;
    color: #e8e8e8;
    min-width: 180px;
}

.lngd tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02);
}

.lngd strong {
    color: #ffffff;
}

.lngd em {
    color: #b9b9bd;
}

.lngd hr {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid #4a4a4d;
}

.lngd img,
.lngd iframe {
    max-width: 100%;
    border-radius: 14px;
}

.lngd table::-webkit-scrollbar {
    height: 8px;
}

.lngd table::-webkit-scrollbar-thumb {
    background: #4a4a4d;
    border-radius: 999px;
}

.lngd table::-webkit-scrollbar-track {
    background: #2a2a2c;
}

@media (max-width: 991px) {
    .lngd {
        margin: 24px auto;
        padding: 32px 24px 48px;
        border-radius: 20px;
    }

    .lngd h2 {
        margin-top: 34px;
    }

    .lngd th,
    .lngd td {
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {
    .lngd {
        margin: 20px auto;
        padding: 24px 16px 40px;
        font-size: 15px;
        line-height: 1.7;
        border-radius: 18px;
    }

    .lngd h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .lngd h2 {
        font-size: 24px;
        margin: 28px 0 16px;
        padding-bottom: 8px;
    }

    .lngd h3 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .lngd p {
        margin-bottom: 16px;
    }

    .lngd ul,
    .lngd ol {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .lngd li {
        margin-bottom: 10px;
    }

    .lngd blockquote {
        margin: 20px 0;
        padding: 16px 18px;
    }

    .lngd th,
    .lngd td {
        min-width: 160px;
        padding: 11px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lngd {
        margin: 16px auto;
        padding: 20px 14px 32px;
        font-size: 14px;
        border-radius: 16px;
    }

    .lngd h1 {
        font-size: 26px;
    }

    .lngd h2 {
        font-size: 22px;
    }

    .lngd h3 {
        font-size: 18px;
    }

    .lngd table {
        margin: 20px 0;
        border-radius: 14px;
    }

    .lngd th,
    .lngd td {
        min-width: 150px;
        padding: 10px 11px;
        font-size: 13px;
    }

    .lngd blockquote {
        padding: 14px 16px;
        border-left-width: 3px;
    }
}
.h3r0-sl1d3r {
    position: relative;
    margin: 0 0 36px;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background: #111214;
}

.sl1d3r-c0nt41n3r {
    position: relative;
    min-height: 620px;
}

.sl1d3-1t3m {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sl1d3-1t3m.act1v3 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.h3r0-1mg {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}

.sl1d3-1t3m::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 1;
}

.sl1d3-1t3m::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(12, 12, 14, 0.4) 100%);
    z-index: 1;
}

.sl1d3-c0nt3nt {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 100%;
    max-width: 1240px;
    padding: 0 24px;
    transform: translate(-50%, -50%);
}

.sl1d3-c0nt3nt > * {
    max-width: 640px;
}

.sl1d3-t1tl3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.sl1d3-t3xt {
    margin: 0 0 30px;
    color: #e0e0e4;
    font-family: 'PT Sans', sans-serif;
    font-size: 19px;
    line-height: 1.65;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.btn-h3r0 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff2e09 0%, #ff5b23 100%);
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(255, 46, 9, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-h3r0:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(255, 46, 9, 0.34);
    color: #ffffff;
}

@media (max-width: 1199px) {
    .sl1d3r-c0nt41n3r {
        min-height: 560px;
    }

    .h3r0-1mg {
        height: 560px;
    }

    .sl1d3-c0nt3nt > * {
        max-width: 560px;
    }

    .sl1d3-t3xt {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .h3r0-sl1d3r {
        margin-bottom: 28px;
        border-radius: 0 0 22px 22px;
    }

    .sl1d3r-c0nt41n3r {
        min-height: 500px;
    }

    .h3r0-1mg {
        height: 500px;
    }

    .sl1d3-c0nt3nt {
        padding: 0 20px;
    }

    .sl1d3-c0nt3nt > * {
        max-width: 520px;
    }

    .sl1d3-t1tl3 {
        margin-bottom: 16px;
    }

    .sl1d3-t3xt {
        margin-bottom: 24px;
        font-size: 17px;
    }

    .btn-h3r0 {
        min-height: 52px;
        padding: 0 26px;
        border-radius: 14px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .h3r0-sl1d3r {
        margin-bottom: 22px;
        border-radius: 0 0 18px 18px;
    }

    .sl1d3r-c0nt41n3r {
        min-height: 420px;
    }

    .sl1d3-1t3m::before {
        background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.9) 100%);
    }

    .h3r0-1mg {
        height: 420px;
    }

    .sl1d3-c0nt3nt {
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        padding: 0 16px 24px;
    }

    .sl1d3-c0nt3nt > * {
        max-width: 100%;
    }

    .sl1d3-t1tl3 {
        font-size: 30px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .sl1d3-t3xt {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .btn-h3r0 {
        width: 100%;
        min-height: 48px;
        padding: 0 20px;
        border-radius: 13px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sl1d3r-c0nt41n3r {
        min-height: 380px;
    }

    .h3r0-1mg {
        height: 380px;
    }

    .sl1d3-c0nt3nt {
        padding: 0 14px 18px;
    }

    .sl1d3-t1tl3 {
        font-size: 26px;
    }

    .sl1d3-t3xt {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .btn-h3r0 {
        min-height: 46px;
        font-size: 14px;
        border-radius: 12px;
    }
}
.4uth0r-s3ct10n {
      padding: 40px 0;
  }

.4uth0r-s3ct10n .s3ct10n-c0nt41n3r {
      max-width: 980px;
      margin: 0 auto;
      padding: 36px 32px;
      background: linear-gradient(180deg, #2f2f31 0%, #262628 100%);
      border: 1px solid #444448;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  }

.4uth0r-s3ct10n .s3ct10n-h34d1ng {
      margin: 0 0 28px;
      text-align: center;
      color: #fff;
      font-family: 'PT Sans', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.15;
      font-weight: 700;
  }

.4uth0r-c4rd {
      display: grid;
      grid-template-columns: 160px minmax(0, 1fr);
      gap: 28px;
      align-items: center;
      padding: 28px;
      background: linear-gradient(180deg, #232325 0%, #1b1b1d 100%);
      border: 1px solid #4a4a4d;
      border-radius: 22px;
  }

.4uth0r-1m4g3 {
      display: flex;
      justify-content: center;
      align-items: center;
  }

.4uth0r-ph0t0 {
      display: block;
      width: 150px;
      height: 150px;
      max-width: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #00fbc8;
      box-shadow: 0 12px 30px rgba(0, 251, 200, 0.18);
      background: #1a1a1c;
  }

.4uth0r-1nf0 {
      min-width: 0;
  }

.4uth0r-n4m3 {
      margin: 0 0 8px;
      color: #fff;
      font-family: 'PT Sans', sans-serif;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 700;
  }

.4uth0r-t1tl3 {
      margin: 0 0 16px;
      color: #00fbc8;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 700;
  }

.4uth0r-b10 {
      color: #d3d3d8;
      font-size: 16px;
      line-height: 1.75;
  }

.4uth0r-b10 p {
      margin: 0;
  }

.4uth0r-s0c14ls {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
  }

.s0c14l-l1nk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid rgba(0, 251, 200, 0.22);
    color: #00fbc8;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.s0c14l-l1nk::before {
    content: "LinkedIn";
}

.s0c14l-l1nk:hover {
    transform: translateY(-2px);
    background: #00fbc8;
    border-color: #00fbc8;
    color: #000;
}

@media (max-width: 991px) {
    .4uth0r-s3ct10n .s3ct10n-c0nt41n3r {
    padding: 28px 24px;
    border-radius: 20px;
}

    .4uth0r-c4rd {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
    border-radius: 18px;
}

    .4uth0r-ph0t0 {
    width: 130px;
    height: 130px;
}
}

@media (max-width: 767px) {
    .4uth0r-s3ct10n {
    padding: 28px 0;
}

    .4uth0r-s3ct10n .s3ct10n-c0nt41n3r {
    padding: 22px 16px;
    border-radius: 18px;
}

    .4uth0r-s3ct10n .s3ct10n-h34d1ng {
    margin-bottom: 20px;
    font-size: 26px;
}

    .4uth0r-c4rd {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 16px;
    text-align: center;
    border-radius: 16px;
}

    .4uth0r-ph0t0 {
    width: 110px;
    height: 110px;
}

    .4uth0r-t1tl3 {
    margin-bottom: 12px;
    font-size: 15px;
}

    .4uth0r-b10 {
    font-size: 15px;
    line-height: 1.7;
}

    .4uth0r-s0c14ls {
    justify-content: center;
    margin-top: 16px;
}

    .s0c14l-l1nk {
        width: 100%;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .4uth0r-s3ct10n .s3ct10n-c0nt41n3r {
    padding: 18px 14px;
    border-radius: 16px;
}

    .4uth0r-s3ct10n .s3ct10n-h34d1ng {
    font-size: 23px;
}

    .4uth0r-c4rd {
    padding: 18px 14px;
    border-radius: 14px;
}

    .4uth0r-ph0t0 {
    width: 96px;
    height: 96px;
}

    .4uth0r-n4m3 {
    font-size: 22px;
}

    .4uth0r-t1tl3 {
    font-size: 14px;
}

    .4uth0r-b10 {
    font-size: 14px;
}

    .s0c14l-l1nk {
        min-height: 44px;
        border-radius: 12px;
        font-size: 13px;
    }
}
.scr33nsh0ts-s3ct10n,
.t0urn4m3nts-s3ct10n {
    padding: 40px 0;
}

.scr33nsh0ts-s3ct10n .s3ct10n-c0nt41n3r,
.t0urn4m3nts-s3ct10n .s3ct10n-c0nt41n3r {
    max-width: 1180px;
    margin: 0 auto;
    padding: 36px 32px;
    background: linear-gradient(180deg, #2f2f31 0%, #262628 100%);
    border: 1px solid #444448;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.scr33nsh0ts-s3ct10n .s3ct10n-h34d1ng,
.t0urn4m3nts-s3ct10n .s3ct10n-h34d1ng {
    margin: 0 0 28px;
    text-align: center;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    font-weight: 700;
}

.scr33ns-gr1d {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.scr33n-1t3m {
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #232325 0%, #1b1b1d 100%);
    border: 1px solid #4a4a4d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.scr33n-1t3m:hover {
    transform: translateY(-6px);
    border-color: #00fbc8;
    box-shadow: 0 22px 40px rgba(0, 251, 200, 0.12);
}

.scr33n-1mg {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.scr33ns-sl1d3r {
    display: none;
}

.scr33n-sl1d3 {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #232325 0%, #1b1b1d 100%);
    border: 1px solid #4a4a4d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.scr33n-sl1d3 img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.t0urn4-gr1d {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.t0urn4-c4rd {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(180deg, #232325 0%, #1b1b1d 100%);
    border: 1px solid #4a4a4d;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.t0urn4-c4rd:hover {
    transform: translateY(-6px);
    border-color: #00fbc8;
    box-shadow: 0 22px 40px rgba(0, 251, 200, 0.12);
}

.t0urn4-h34d3r {
    padding: 18px 20px;
    background: linear-gradient(135deg, #ff2e09 0%, #ff5b23 100%);
}

.t0urn4-t1tl3,
.t0urn4-sl1d3 .t0urn4-c4rd h3 {
    margin: 0;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.t0urn4-b0dy,
.t0urn4-sl1d3 .t0urn4-c4rd {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.t0urn4-b0dy {
    flex: 1;
    padding: 20px;
}

.t0urn4-d3sc,
.t0urn4-sl1d3 .t0urn4-c4rd p {
    margin: 0;
    color: #d0d0d5;
    font-size: 15px;
    line-height: 1.7;
}

.t0urn4-pr1z3 {
    margin-top: auto;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.t0urn4-pr1z3 strong {
    display: block;
    margin-top: 4px;
    color: #00fbc8;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
}

.t0urn4-t1m3r {
    color: #ffb39f;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.t1m3r-d1spl4y,
.t0urn4-t1m3r span {
    color: #fff;
}

.t0urn4-f00t3r {
    padding: 0 20px 20px;
}

.btn-t0urn4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00fbc8 0%, #00cea8 100%);
    color: #000;
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 14px 28px rgba(0, 251, 200, 0.18);
}

.btn-t0urn4:hover {
    transform: translateY(-2px);
    color: #000;
    box-shadow: 0 18px 32px rgba(0, 251, 200, 0.24);
}

.t0urn4-sl1d3r {
    display: none;
}

.t0urn4-sl1d3 {
    min-width: 100%;
}

.t0urn4-sl1d3 .t0urn4-c4rd {
    padding: 20px 16px;
}

.t0urn4-d0ts {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.t-d0t {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.t-d0t.act1v3 {
    background: #00fbc8;
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .scr33nsh0ts-s3ct10n .s3ct10n-c0nt41n3r,
    .t0urn4m3nts-s3ct10n .s3ct10n-c0nt41n3r {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .scr33ns-gr1d,
    .t0urn4-gr1d {
        grid-template-columns: 1fr;
    }

    .scr33n-1mg {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .scr33nsh0ts-s3ct10n,
    .t0urn4m3nts-s3ct10n {
        padding: 28px 0;
    }

    .scr33nsh0ts-s3ct10n .s3ct10n-c0nt41n3r,
    .t0urn4m3nts-s3ct10n .s3ct10n-c0nt41n3r {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .scr33nsh0ts-s3ct10n .s3ct10n-h34d1ng,
    .t0urn4m3nts-s3ct10n .s3ct10n-h34d1ng {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .scr33ns-gr1d,
    .t0urn4-gr1d {
        display: none;
    }

    .scr33ns-sl1d3r,
    .t0urn4-sl1d3r {
        display: flex;
        gap: 0;
        overflow: hidden;
        border-radius: 18px;
    }

    .scr33n-sl1d3 img {
        height: 210px;
    }

    .t0urn4-d0ts {
        display: flex;
    }

    .t0urn4-sl1d3 .t0urn4-c4rd h3 {
        font-size: 20px;
    }

    .t0urn4-sl1d3 .t0urn4-c4rd p {
        font-size: 14px;
    }

    .t0urn4-sl1d3 .t0urn4-pr1z3 strong {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .scr33nsh0ts-s3ct10n .s3ct10n-c0nt41n3r,
    .t0urn4m3nts-s3ct10n .s3ct10n-c0nt41n3r {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .scr33nsh0ts-s3ct10n .s3ct10n-h34d1ng,
    .t0urn4m3nts-s3ct10n .s3ct10n-h34d1ng {
        font-size: 23px;
    }

    .scr33n-sl1d3,
    .t0urn4-sl1d3 .t0urn4-c4rd {
        border-radius: 16px;
    }

    .scr33n-sl1d3 img {
        height: 190px;
    }

    .t0urn4-sl1d3 .t0urn4-c4rd {
        padding: 18px 14px;
    }

    .t0urn4-sl1d3 .t0urn4-c4rd h3 {
        font-size: 18px;
    }

    .t0urn4-pr1z3 {
        padding: 12px 14px;
    }

    .t0urn4-pr1z3 strong {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .scr33ns-sl1d3r,
    .t0urn4-sl1d3r {
        display: flex;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .scr33n-sl1d3,
    .t0urn4-sl1d3 {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .scr33ns-sl1d3r {
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .t0urn4-sl1d3r {
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .scr33ns-d0ts,
    .t0urn4-d0ts {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
    }

    .scr-d0t,
    .t-d0t {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.28);
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .scr-d0t.act1v3,
    .t-d0t.act1v3 {
        background: #00fbc8;
        transform: scale(1.15);
    }
}
.h34d3r-m41n {
    position: relative;
    z-index: 1000;
}

.m0b1l3-m3nu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111214;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 30px rgba(0,0,0,0.28);
    padding: 14px 16px 18px;
    z-index: 999;
}

.m0b1l3-m3nu.act1v3 {
    display: block;
    animation: m0bFadeDown 0.25s ease;
}

.m0b-m3nu-l1st {
    list-style: none;
    margin: 0;
    padding: 0;
}

.m0b-m3nu-l1st li + li {
    margin-top: 8px;
}

.m0b-l1nk {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    background: rgba(255,255,255,0.03);
    transition: background 0.2s ease, color 0.2s ease;
}

.m0b-l1nk:hover {
    background: rgba(0,251,200,0.12);
    color: #00fbc8;
}

.burg3r-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.burg3r-btn span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 0 auto;
    border-radius: 3px;
    background: #00fbc8;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.burg3r-btn.act1v3 span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burg3r-btn.act1v3 span:nth-child(2) {
    opacity: 0;
}

.burg3r-btn.act1v3 span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@keyframes m0bFadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .n4v-m3nu {
        display: none;
    }

    .burg3r-btn {
        display: flex;
    }
}

@media (min-width: 992px) {
    .m0b1l3-m3nu {
        display: none !important;
    }
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
}

.h34d3r-m41n {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #000000;
}

.c0nt41n3r-fl3x {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.h34d3r-t0p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.l0g0-bl0ck,
.h34d3r-r1ght,
.4uth-butt0ns,
  .burg3r-btn,
  .n4v-m3nu {
      min-width: 0;
  }

.m0b1l3-m3nu {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.m0b-m3nu-l1st {
    width: 100%;
}

.m0b-l1nk {
    width: 100%;
}

@media (max-width: 991px) {
    .h34d3r-m41n {
        position: sticky;
        top: 0;
    }

    .c0nt41n3r-fl3x {
        padding: 0 14px;
    }

    .h34d3r-t0p {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .l0g0-1mg {
        width: auto;
        height: 42px;
        max-width: 100%;
    }

    .h34d3r-r1ght {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .4uth-butt0ns {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-l0g1n,
    .btn-r3g1st3r {
        padding: 8px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .m0b1l3-m3nu {
        left: 0;
        right: 0;
        padding: 12px 14px 16px;
    }
}

@media (max-width: 767px) {
    .c0nt41n3r-fl3x {
        padding: 0 12px;
    }

    .h34d3r-t0p {
        gap: 8px;
    }

    .l0g0-1mg {
        height: 38px;
    }

    .4uth-butt0ns {
    gap: 6px;
}

    .btn-l0g1n,
    .btn-r3g1st3r {
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 18px;
    }

    .burg3r-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .m0b1l3-m3nu {
        padding: 10px 12px 14px;
    }
}

@media (max-width: 480px) {
    .c0nt41n3r-fl3x {
        padding: 0 10px;
    }

    .btn-l0g1n,
    .btn-r3g1st3r {
        padding: 6px 8px;
        font-size: 11px;
    }

    .l0g0-1mg {
        height: 34px;
    }
}
.h34d3r-m41n {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #000;
}

body {
    padding-top: 86px;
}

@media (max-width: 767px) {
    body {
        padding-top: 74px;
    }
}