/* ===== General Settings ===== */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;

    pointer-events: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    cursor: none;
}

html,
body {
    background-color: #171616;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    height: 100%;
    overflow-x: hidden;

    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* BODY CONTENT */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
}

.hero {
    text-align: center;
    background-color: #171616;
    color: #fff;
    width: 100%;
}

.hero h1 {
    margin-bottom: 20px;
    color: #ffcc00;
    font-size: 2.2rem;
    line-height: 1.3;
}

.hero p {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #bbbaba;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-body {
    text-align: center;
    background-color: #171616;
    color: #fff;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}


.hero-body h1 {
    margin-bottom: 20px;
    color: #ffcc00;
    font-size: 2rem;
    line-height: 1.3;
}

.hero-body p {
    font-size: 19px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: #ff9100;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 196, 0, 0.5);
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 187, 0, 0.7);
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.image-container img {
    width: 100px;
    max-width: 100%;
    margin-bottom: 40px;
}

.image-container-2 img {
    width: 700px;
    max-width: 100%;
    margin-bottom: 20px;
    margin-top: 50px;
}

/* Background mask + grid */
.background-mask {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    perspective: 150px;

    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: cover;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: cover;
}

.grid {
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(#ffd000 1px, transparent 1px),
        linear-gradient(90deg, #ff8800 1px, transparent 1px);
    background-size: 60px 60px;
    position: absolute;
    bottom: 0;
    transform: rotateX(20deg) scale(1.2);
    animation: moveGrid 3s linear infinite;
    opacity: 0.3;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 100px;
    }
}

/* Welcome */

.welcome-container {
    width: 100%;
    max-width: 1600px;
    align-items: start;
    display: flex;
}

.welcome-message {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4facfe;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeSlide 1s ease forwards;
    text-align: center;
    margin: 10px 0;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Countries marquee ===== */
.countries {
    width: 100%;
    max-width: 1600px;
    margin: 18px auto 0;
}

.countries-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d8d8d8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 10px 0 8px;
    opacity: .85;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: #141414;
}

.marquee-track {
    display: inline-flex;
    gap: 14px;
    padding: 12px 16px;
    white-space: nowrap;
    will-change: transform;
    animation: marqueeMove 18s linear infinite;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.c-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
}

.c-item .column {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-item .flag {
    width: 60px;
    height: 60px;
    border-radius: 20px;
}

.c-item .name {
    font-weight: 700;
    font-size: 1rem;
    color: #f1f1f1;
}

.c-item .c-ico {
    font-size: 20px;
    opacity: .9;
    padding-right: 10px;
    color: white;
}

.c-item .val {
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    color: #ffcc00;
}

/* User */

.users {
    width: 100%;
    max-width: 490px;

}

.users-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d8d8d8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 10px 0 8px;
    opacity: .85;
    text-align: start;
}

.list-wrapper {
    max-width: 490px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: #141414;
    padding: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 0;
    min-width: 95%;
}

.user-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    gap: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
    padding: 8px 12px;
}

.user-block .row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.country {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 2px;
}

.user-block .row div:first-child {
    font-weight: 200;
    font-size: 25px;
    color: #e9eaee;
    align-items: start;
}

.user-block .row div:last-child {
    font-size: 14px;
    color: #ffcc00;
    align-items: start;
}

.user-block img.flag {
    width: 30px;
    margin-left: 4px;
    border-radius: 30px;
    object-fit: cover;
}

/* Data */

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    flex: 1 1 calc(25% - 20px);
    background: #121213;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    min-width: 300px;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 10px;
    /* icon ve yazı arası boşluk */
}

.arrow i {
    font-size: 1.2rem;
    color: #888;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .icon {
    font-size: 36px;
    color: #ff9100;
}

.stat-info {
    gap: 10px;
    display: flex;
    flex-direction: row;
}

.stat-col {
    display: flex;
    flex-direction: column;
}

.stat-info h4 {
    font-size: 16px;
    margin: 0;
    color: #ccc;
}

.stat-info .counter {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.stat-info .live {
    display: flex;
    flex-direction: row;
}

/* Footer Buttons */

.stats-container-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.stat-card-buttons {
    flex: 1 1 calc(25% - 20px);
    background: #121213;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    min-width: 250px;
}

.stat-card-buttons:hover {
    transform: translateY(-5px);
}

.stat-card-buttons .icon {
    font-size: 36px;
    color: #9900ffff;
}

#howButton .icon {
    color: #ffc400;
}

#howArt .icon {
    color: #00b7ff;
}

#howDoc .icon {
    color: #ff0055;
}

#howTtr .icon {
    color: #7fff00;
}

.stat-info-buttons h4 {
    font-size: 16px;
    margin: 0;
    color: #ccc;
}

/* STEP Section */
.steps-section {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    position: relative;
}

.steps-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #ffd700;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Step */
.step {
    flex: 1 1 220px;
    background: #1a1a1a;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Hover Effect */
.step:hover {
    transform: translateY(-10px);
}

/* Individual Colors */
.step:nth-child(1) {
    border-top: 4px solid #f39c12;
}

.step:nth-child(1) .icon {
    color: #f39c12;
}

.step:nth-child(1):hover {
    box-shadow: 0px 8px 20px rgba(243, 156, 18, 0.5);
}

.step:nth-child(2) {
    border-top: 4px solid #27ae60;
}

.step:nth-child(2) .icon {
    color: #27ae60;
}

.step:nth-child(2):hover {
    box-shadow: 0px 8px 20px rgba(39, 174, 96, 0.5);
}

.step:nth-child(3) {
    border-top: 4px solid #3498db;
}

.step:nth-child(3) .icon {
    color: #3498db;
}

.step:nth-child(3):hover {
    box-shadow: 0px 8px 20px rgba(52, 152, 219, 0.5);
}

.step:nth-child(4) {
    border-top: 4px solid #e74c3c;
}

.step:nth-child(4) .icon {
    color: #e74c3c;
}

.step:nth-child(4):hover {
    box-shadow: 0px 8px 20px rgba(231, 76, 60, 0.5);
}

/* Icon */
.step .icon {
    font-size: 45px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.step:hover .icon {
    transform: scale(1.2);
}

/* Titles and Text */
.step h4 {
    margin: 12px 0;
    font-size: 18px;
    color: #fff;
}

.step p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.step-number {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}


.glow {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #7fff00;
    box-shadow: 0 0 15px #7fff00, 0 0 30px #7fff00;
    animation: pulse 2s infinite;
    margin-left: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #7fff00, 0 0 20px #7fff00;
    }

    50% {
        box-shadow: 0 0 20px #7fff00, 0 0 40px #7fff00;
    }

    100% {
        box-shadow: 0 0 10px #7fff00, 0 0 20px #7fff00;
    }
}

.cursor-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #ff8800;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, opacity 0.2s ease;
    z-index: 9999;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #ff8800;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.15s ease, background 0.3s ease;
    z-index: 10000;
}

/* Hover (pointer) effect */
.cursor-dot.active {
    transform: translate(-50%, -50%) scale(5.5);
    background: #eeff0077;
}

.cursor-border.hidden {
    opacity: 0;
}

/* ========== Responsive ========== */

/* Tablet */
@media (max-width: 992px) {
    .background-mask {
        height: 500px;
    }

    main {
        padding: 40px 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .c-item .flag {
        width: 50px;
        height: 50px;
    }

    .c-item .name {
        font-size: 0.9rem;
    }

    .c-item .val {
        font-size: 0.9rem;
    }

    .user-block .row div:first-child {
        font-size: 20px;
    }

    .stat-card {
        flex: 1 1 calc(50% - 0px);
    }

    .stat-card-buttons {
        flex: 1 1 calc(50% - 0px);
    }

    .cursor-border,
    .cursor-dot {
        display: none;
    }

    .steps-container {
        justify-content: center;
    }

    .step {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
}

/* Mobil */
@media (max-width: 600px) {
    .background-mask {
        height: 480px;
    }

    main {
        padding: 40px 10px;
    }

    .grid {
        width: 150%;
        height: 150%;
        background-size: 40px 40px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .image-container img {
        width: 100px;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .cta-btn {
        font-size: 0.7rem !important;
    }

    .c-item {
        padding: 6px 10px;
        gap: 6px;
    }

    .c-item .flag {
        width: 38px;
        height: 38px;
    }

    .c-item .name {
        font-size: 0.8rem;
    }

    .c-item .val {
        font-size: 0.8rem;
    }

    .c-item .c-ico {
        font-size: 16px;
    }

    .user-block .row div:first-child {
        font-size: 18px;
    }

    .stat-card {
        flex: 1 1 100%;
    }

    .stat-card .icon {
        font-size: 26px;
    }

    .stat-info h4 {
        font-size: 14px;
    }

    .stat-card .counter {
        font-size: 18px;
    }

    .stat-card-buttons {
        flex: 1 1 100%;
    }

    .stat-card-buttons .icon {
        font-size: 26px;
    }

    .stat-info-buttons h4 {
        font-size: 14px;
    }

    .cursor-border,
    .cursor-dot {
        display: none;
    }

    .step {
        flex: 1 1 90%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 350px;
    }

    .welcome-message {
        font-size: 1.8rem;
    }
}