/* GLOBAL FONT — iOS System Font */
body, h1, h2, h3, p, button {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
                 "SF Pro Display", "Helvetica Neue", Roboto, system-ui, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* BODY */
body {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* HEADER — hologram style */
header {
    padding: 70px 20px;
    text-align: center;
    color: white;
    background:
        radial-gradient(circle at 20% 30%, #4DA3FF 0%, transparent 60%),
        radial-gradient(circle at 80% 40%, #1C6DD0 0%, transparent 55%),
        radial-gradient(circle at 50% 80%, #6A8DFF 0%, transparent 60%),
        #1C6DD0;
    background-blend-mode: screen;
    position: relative;
}

/* Blur layer */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(35px);
    opacity: 0.55;
    z-index: -1;
}

/* HEADER TEXT */
header h1 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

header p {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

/* HEADER LOGO */
.header-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 420px;
    height: 420px;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

/* BUTTON */
button {
    padding: 12px 18px;
    background: #1C6DD0;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: background 0.2s ease;
}

button:hover {
    background: #4DA3FF;
}

/* FEES SECTION */
.fees {
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    color: #111;
}

.fees h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 18px;
}

/* FEE LIST */
.fee-list {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* FEE ITEM */
.fee-item {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    min-width: 0;
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ICON STYLE */
.fee-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.9;
}

/* CONTACT BOX */
.contact-box {
    margin-top: 25px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    font-size: 13px;
    line-height: 1.4;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.9;
    display: block;
}

.contact-item {
    display: grid;
    grid-template-columns: 22px auto 1fr;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.contact-item span,
.contact-item a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* SCROLL ANIMATION */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(.25,.1,.25,1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* LEGAL FOOTER */
.legal {
    margin-top: 60px;
    padding: 20px 0;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    color: #666;
    font-size: 11.5px;
    line-height: 1.45;
    opacity: 0.75;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal p {
    margin: 0;
    padding: 0;
}

.legal a {
    color: #1C6DD0;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.9;
}

.legal a:hover {
    text-decoration: underline;
}

.legal .copyright {
    margin-top: 10px;
    font-size: 10.5px;
    opacity: 0.55;
}


/* TELEGRAM PREMIUM EFFECTS */
#premium-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.premium-star {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
    animation: floatUp 3s ease-out forwards;
}

@keyframes floatUp {
    0% {
        transform: translateY(20px) scale(0.5);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(-40px) scale(1);
        opacity: 0;
    }
}

/* Disable text selection */
* {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* IMG FIX */
img {
    max-width: 100%;
}
