/* ===================================================
   MOLLYRA LINK
   Cyber Purple Theme
   style.css
   Part 1
=================================================== */

:root{

    --bg:#06060b;
    --bg2:#0d0d18;
    --bg3:#161629;

    --card:rgba(18,18,28,.82);
    --glass:rgba(255,255,255,.05);

    --purple:#9d4edd;
    --purple2:#c77dff;
    --pink:#ff4ecd;
    --cyan:#4cc9f0;

    --white:#ffffff;
    --text:#d9d9e8;
    --muted:#9fa5c3;

    --border:rgba(255,255,255,.08);

    --shadow:
        0 20px 50px rgba(0,0,0,.45);

    --glow:
        0 0 20px rgba(157,78,221,.45);

    --radius:26px;

    --transition:.35s ease;

    --container:560px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Noto Sans Thai",sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

    min-height:100vh;

    position:relative;

}

/* ===============================
Background
=============================== */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(circle at top left,
    rgba(157,78,221,.22),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(76,201,240,.12),
    transparent 35%),

    linear-gradient(
    180deg,
    var(--bg),
    var(--bg2),
    var(--bg3));

    z-index:-3;

}

.bg-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:45px 45px;

    opacity:.25;

    z-index:-2;

}

.bg-glow{

    position:fixed;

    width:420px;

    height:420px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

    pointer-events:none;

    z-index:-1;

}

.glow-1{

    background:var(--purple);

    top:-120px;

    left:-120px;

}

.glow-2{

    background:var(--cyan);

    right:-150px;

    bottom:-150px;

}

/* ===============================
Particle Canvas
=============================== */

#particles{

    position:fixed;

    inset:0;

    width:100%;

    height:100%;

    z-index:-1;

    pointer-events:none;

}

/* ===============================
Layout
=============================== */

.page{

    width:100%;
    max-width:560px;
    margin:auto;
    padding:0 22px 80px;

}

section{

    margin-top:70px;

}

/* ===============================
Hero
=============================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:60px 0;

}

.hero-card{

    width:100%;

    padding:40px 30px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:32px;

    backdrop-filter:blur(18px);

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.hero-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        135deg,
        rgba(255,255,255,.06),
        transparent 45%);

    pointer-events:none;

}

/* ===============================
Avatar
=============================== */

.profile-image{

    width:150px;

    height:150px;

    margin:auto;

    position:relative;

}

.profile-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.12);

    box-shadow:

    0 0 40px rgba(157,78,221,.35);

}

.online{

    position:absolute;

    right:8px;

    bottom:12px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#2dff73;

    border:4px solid var(--bg2);

    box-shadow:

    0 0 20px #2dff73;

}

/* ===============================
Verified
=============================== */

.verified{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:24px;

    padding:10px 18px;

    border-radius:100px;

    background:rgba(157,78,221,.15);

    color:var(--purple2);

    border:1px solid rgba(157,78,221,.3);

    font-size:14px;

    font-weight:700;

}

.verified svg{

    width:18px;

    height:18px;

    fill:currentColor;

}

/* ===============================
Heading
=============================== */

.hero h1{

    margin-top:20px;

    font-size:48px;

    font-weight:800;

    line-height:1.1;

    background:

    linear-gradient(
    90deg,
    #ffffff,
    var(--purple2),
    var(--cyan));

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.username{

    margin-top:10px;

    color:var(--muted);

    font-size:18px;

}

.bio{

    margin:24px auto;

    max-width:460px;

    color:var(--text);

    line-height:1.9;

    font-size:16px;

}
/* ===================================================
   style.css
   Part 2
=================================================== */

/* ===============================
Hero Tags
=============================== */

.hero-tags{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

    margin-top:30px;

}

.hero-tags span{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    color:var(--text);

    font-size:14px;

    font-weight:600;

    transition:var(--transition);

    backdrop-filter:blur(12px);

}

.hero-tags span:hover{

    background:rgba(157,78,221,.18);

    border-color:var(--purple);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 0 18px rgba(157,78,221,.35);

}

/* ===============================
Hero Stats
=============================== */

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:38px;

}

.stat{

    padding:22px 15px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    transition:var(--transition);

    backdrop-filter:blur(14px);

}

.stat:hover{

    transform:translateY(-6px);

    border-color:var(--purple);

    box-shadow:0 0 25px rgba(157,78,221,.28);

}

.stat h3{

    font-size:28px;

    font-weight:800;

    color:#fff;

    margin-bottom:8px;

}

.stat span{

    font-size:14px;

    color:var(--muted);

}

/* ===============================
Buttons
=============================== */

.hero-buttons{

    display:flex;

    gap:18px;

    justify-content:center;

    margin-top:40px;

    flex-wrap:wrap;

}

.btn{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:180px;

    padding:16px 28px;

    border-radius:18px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.35s ease;

}

.btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:70%;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.35),

    transparent

    );

    transition:.8s;

}

.btn:hover::before{

    left:150%;

}

.btn.primary{

    background:

    linear-gradient(

    135deg,

    var(--purple),

    var(--pink)

    );

    color:#fff;

    box-shadow:

    0 15px 35px rgba(157,78,221,.35);

}

.btn.primary:hover{

    transform:translateY(-5px);

    box-shadow:

    0 20px 50px rgba(157,78,221,.55);

}

.btn.secondary{

    background:rgba(255,255,255,.04);

    color:#fff;

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(16px);

}

.btn.secondary:hover{

    border-color:var(--cyan);

    box-shadow:

    0 0 22px rgba(76,201,240,.25);

    transform:translateY(-5px);

}

/* ===============================
Section
=============================== */

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title h2{

    margin-top:15px;

    font-size:36px;

    font-weight:800;

    color:#fff;

}

.section-title p{

    margin:18px auto 0;

    max-width:460px;

    color:var(--muted);

    line-height:1.8;

}

/* ===============================
Badge
=============================== */

.badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(157,78,221,.15);

    border:1px solid rgba(157,78,221,.30);

    color:var(--purple2);

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

}

/* ===============================
Featured Links
=============================== */

.featured-links{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.link-card{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    gap:22px;

    padding:24px;

    border-radius:26px;

    text-decoration:none;

    color:#fff;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

    backdrop-filter:blur(18px);

}

.link-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        135deg,

        rgba(157,78,221,.12),

        transparent 60%

    );

    opacity:0;

    transition:.4s;

}

.link-card:hover::before{

    opacity:1;

}

.link-card:hover{

    transform:translateY(-6px);

    border-color:var(--purple);

    box-shadow:

    0 20px 50px rgba(157,78,221,.30);

}

.featured-card{

    background:

    linear-gradient(

        135deg,

        rgba(157,78,221,.25),

        rgba(255,78,205,.12)

    );

    border:1px solid rgba(199,125,255,.45);

}

/* ===============================
Link Icon
=============================== */

.link-icon{

    width:64px;

    height:64px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    background:

    linear-gradient(

        135deg,

        rgba(157,78,221,.25),

        rgba(76,201,240,.15)

    );

    border:1px solid rgba(255,255,255,.08);

    flex-shrink:0;

}

.link-content{

    flex:1;

}

.link-content h3{

    font-size:20px;

    margin-bottom:8px;

    font-weight:700;

}

.link-content p{

    color:var(--muted);

    font-size:15px;

    line-height:1.7;

}

.link-arrow{

    font-size:30px;

    color:var(--purple2);

    transition:.35s;

}

.link-card:hover .link-arrow{

    transform:translateX(10px);

    color:#fff;

}

/* ===================================================
   style.css
   Part 3
=================================================== */

/* ===============================
SOCIAL SECTION
=============================== */

.social-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.social-card{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:10px;

    padding:24px 15px;

    text-decoration:none;

    color:var(--white);

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    transition:var(--transition);

    backdrop-filter:blur(18px);

}

.social-card span{

    font-size:34px;

}

.social-card small{

    font-size:14px;

    color:var(--muted);

}

.social-card:hover{

    transform:translateY(-8px);

    border-color:var(--purple);

    box-shadow:

        0 20px 40px rgba(157,78,221,.28);

    background:

        linear-gradient(

            135deg,

            rgba(157,78,221,.18),

            rgba(76,201,240,.08)

        );

}

/* ===============================
QUOTE
=============================== */

.quote-card{

    position:relative;

    overflow:hidden;

    padding:50px 40px;

    border-radius:30px;

    text-align:center;

    background:

        linear-gradient(

            135deg,

            rgba(157,78,221,.18),

            rgba(255,255,255,.03)

        );

    border:1px solid rgba(157,78,221,.25);

}

.quote-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at top right,

        rgba(76,201,240,.18),

        transparent 45%);

    pointer-events:none;

}

.quote-icon{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:80px;

    height:80px;

    border-radius:50%;

    font-size:34px;

    margin-bottom:25px;

    background:rgba(157,78,221,.18);

    box-shadow:0 0 30px rgba(157,78,221,.35);

}

.quote-card h2{

    font-size:36px;

    margin-bottom:20px;

}

.quote-card p{

    max-width:700px;

    margin:auto;

    color:var(--text);

    line-height:1.9;

}

/* ===============================
LIVE STATS
=============================== */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

.stats-card{

    padding:35px 20px;

    text-align:center;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:var(--transition);

}

.stats-card:hover{

    transform:translateY(-8px);

    border-color:var(--purple);

    box-shadow:0 20px 45px rgba(157,78,221,.30);

}

.stats-card h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:10px;

    background:

        linear-gradient(

            90deg,

            var(--purple2),

            var(--cyan)

        );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.stats-card span{

    color:var(--muted);

    font-size:15px;

}

/* ===============================
QR CARD
=============================== */

.qr-card{

    display:flex;

    align-items:center;

    gap:35px;

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

}

.qr-image img{

    width:180px;

    border-radius:20px;

    background:#fff;

    padding:10px;

}

.qr-content{

    flex:1;

}

.qr-content h2{

    margin:18px 0;

    font-size:34px;

}

.qr-content p{

    color:var(--muted);

    line-height:1.8;

}

/* ===============================
CTA
=============================== */

.cta-card{

    position:relative;

    overflow:hidden;

    padding:70px 40px;

    text-align:center;

    border-radius:32px;

    background:

        linear-gradient(

            135deg,

            rgba(157,78,221,.25),

            rgba(76,201,240,.10)

        );

    border:1px solid rgba(157,78,221,.25);

}

.cta-card::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(157,78,221,.22);

    filter:blur(90px);

    right:-120px;

    top:-120px;

}

.cta-card h2{

    font-size:46px;

    margin:25px 0;

}

.cta-card p{

    max-width:650px;

    margin:auto;

    color:var(--text);

    line-height:1.9;

}

.cta-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* ===============================
FOOTER
=============================== */

.footer{

    margin-top:90px;

    padding-top:50px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:16px;

    margin-bottom:20px;

}

.footer-logo img{

    width:54px;

}

.footer-logo h3{

    font-size:28px;

}

.footer>p{

    max-width:620px;

    margin:0 auto 35px;

    color:var(--muted);

    line-height:1.9;

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:28px;

    margin-bottom:35px;

}

.footer-links a{

    color:var(--text);

    text-decoration:none;

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--purple2);

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:40px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:var(--transition);

}

.footer-social a:hover{

    transform:translateY(-6px) rotate(8deg);

    background:var(--purple);

    box-shadow:0 0 25px rgba(157,78,221,.45);

}

.footer-bottom{

    padding:25px 0 10px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    color:var(--muted);

    margin-bottom:8px;

}

.footer-bottom small{

    color:#7f87a6;

    font-size:13px;

}