﻿body{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fff;
    color: #000;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    max-width: 500px;
}
.join-btn {
    background-color: #3c74d4;
    color: white;
    border: none;
    border-radius: 6px;
    padding:1rem;
    width: 100%;
    font-weight: 600;
    font-size: 1.5rem;
}
.join-btn:hover,.join-btn:active {
    background-color: #254eda !important;
}
.trusted {
    font-size: 0.9rem;
    color: #666;
}
.policy {
    font-size: 0.8rem;
    color: #888;
}
.btn2 {
    overflow: hidden; 
    position: relative;
}
.btn2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.3) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
}

.btn2:hover::after {
    left: 125%;
}
