@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

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

body{
    min-height:100vh;
    font-family:'Poppins', sans-serif;
    background:
        radial-gradient(circle at top, rgba(212,175,55,0.07), transparent 30%),
        linear-gradient(180deg, #0d0d0a 0%, #030303 100%);
    color:#ffffff;
}

.page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:28px 18px;
}

.container{
    width:100%;
    max-width:450px;
    text-align:center;
    animation:fadeUp .7s ease forwards;
}

.logo{
    width:132px;
    margin-bottom:16px;
    filter:drop-shadow(0 0 6px rgba(212,175,55,.16));
}

.brand{
    font-size:36px;
    font-weight:800;
    letter-spacing:5px;
    line-height:1;
    margin-bottom:15px;
    background:linear-gradient(180deg, #fff0ad 0%, #d4af37 50%, #8d6f18 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.top-line{
    width:145px;
    height:1px;
    margin:0 auto 17px;
    background:linear-gradient(90deg, transparent, rgba(212,175,55,.45), transparent);
}

.intro{
    max-width:390px;
    margin:0 auto 22px;
    color:#f1f1f1;
    font-size:14px;
    font-weight:600;
    line-height:1.55;
}

.telegram-circle{
    width:44px;
    height:44px;
    margin:0 auto 28px;
    border:1px solid rgba(212,175,55,.65);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-decoration:none;
    transition:.25s ease;
}

.telegram-circle:hover{
    transform:translateY(-3px) scale(1.04);
    border-color:rgba(212,175,55,.95);
}

.telegram-circle img{
    width:27px;
    height:27px;
    object-fit:contain;
}

.section-label{
    font-size:12px;
    font-weight:800;
    letter-spacing:4px;
    color:#b9952d;
    margin-bottom:18px;
}

.link-card{
    width:100%;
    min-height:78px;
    margin-bottom:16px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:16px;
    text-align:left;
    text-decoration:none;
    color:#ffffff;
    background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
    border:1px solid rgba(212,175,55,.50);
    border-radius:19px;
    transition:.25s ease;
}

.link-card:hover{
    transform:translateY(-3px);
    border-color:rgba(212,175,55,.9);
    background:linear-gradient(180deg, rgba(212,175,55,.11), rgba(255,255,255,.02));
}

.icon-circle{
    width:48px;
    height:48px;
    min-width:48px;
    border:2px solid rgba(212,175,55,.65);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-size:20px;
    font-weight:700;
    overflow:hidden;
}

.money-icon{
    font-size:21px;
    font-weight:800;
}

.icon-circle img{
    width:31px;
    height:31px;
    object-fit:contain;
}

.card-text{
    flex:1;
}

.card-text h2{
    font-size:16px;
    font-weight:700;
    letter-spacing:.2px;
    line-height:1.22;
    margin-bottom:5px;
}

.card-text p{
    font-size:12px;
    color:#b9952d;
    font-weight:500;
    line-height:1.35;
}

.arrow{
    color:#d4af37;
    font-size:31px;
    font-weight:400;
    line-height:1;
    transition:.25s ease;
}

.link-card:hover .arrow{
    transform:translateX(4px);
}

.footer-note{
    margin-top:24px;
    color:#b8b8b8;
    font-size:11px;
    letter-spacing:1px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(18px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:480px){
    .page{
        padding:24px 16px;
        align-items:flex-start;
    }

    .logo{
        width:108px;
        margin-bottom:14px;
    }

    .brand{
        font-size:30px;
        letter-spacing:4px;
        margin-bottom:14px;
    }

    .intro{
        font-size:12px;
        max-width:330px;
    }

    .section-label{
        font-size:10px;
        letter-spacing:3px;
    }

    .link-card{
        min-height:72px;
        padding:13px 15px;
        gap:13px;
    }

    .icon-circle{
        width:44px;
        height:44px;
        min-width:44px;
    }

    .icon-circle img{
        width:28px;
        height:28px;
    }

    .card-text h2{
        font-size:14px;
        font-weight:700;
    }

    .card-text p{
        font-size:11px;
    }

    .arrow{
        font-size:28px;
    }
}