* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #101015;
    color: #eaeaea;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #00d4ff;
}

.logo span {
    color: #ffffff;
}

.nav a {
    margin: 0 0.8rem;
    font-weight: 500;
    color: #bbb;
    transition: 0.3s;
}

.nav a:hover { color: #00d4ff; }

.hero {
    position: relative;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 600px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.hero h1 { font-size:3rem; margin-bottom:1rem; }
.hero .subtitle { font-size:1.3rem; margin-bottom:2rem; color:#aaa; }

.cta-btn {
    padding:0.8rem 2rem;
    border:none;
    border-radius:8px;
    background:rgba(255,255,255,0.08);
    color:#fff;
    font-size:1.1rem;
    cursor:pointer;
    transition:0.3s;
}

.cta-btn:hover { background:rgba(0,212,255,0.3); }


.panel {
    margin: 4rem auto;
    padding: 3rem;
    border-radius: 16px;
    max-width: 1000px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
}

.panel h2 { margin-bottom: 1.5rem; font-size:1.8rem; }
.panel p { margin-bottom:1.5rem; }


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 1.5rem;
}

.feature-card {
    padding:1.5rem;
    border-radius:12px;
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(0,212,255,0.1);
}

.link-wrapp{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.link-content{
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius: 12px;

}

.floating-circles {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:0;
}
.stat-box{
    width: 150px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
}

.stat-box p{
    margin: 0;
}

.stats-tip{
    margin-top: 2rem;
}
.stats-grid{
    display: flex;
    justify-content: space-around;
}
.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.4), transparent);
    filter: blur(50px);
    animation: floatUpDown 12s ease-in-out infinite alternate;
}

.circle-lg { width:200px; height:200px; }
.circle-md { width:120px; height:120px; }
.circle-sm { width:60px; height:60px; }

@keyframes floatUpDown {
    0% { transform: translateY(0) }
    100% { transform: translateY(-80px) }
}

.footer {
    text-align:center;
    padding:2rem;
    margin-top:auto;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-top:1px solid rgba(255,255,255,0.1);
}

@media (max-width:768px){
    .hero h1 { font-size:2.2rem; }
    .panel { padding:2rem; }
    nav { display:none; }
    .logo { display:flex; justify-content:center; margin:0 auto; }
    .stats-grid{
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}
