/* ===================================================
   DARKAURA

   Author  : Diyorbek
   Version : 2.0
   Theme   : Dark Purple
   Created : 2026

=================================================== */

  /* ======== RESET ========== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Space Grotesk",sans-serif;
    background:#07070b;
    color:#fff;
    line-height:1.4;
    overflow-x:hidden;

    /* Remove blue tap effect on mobile */
    -webkit-tap-highlight-color:transparent;
}


/* ===================================================
   HEADER
=================================================== */

.header{
    position:sticky;
    top:0;
    z-index:999;

    width:100%;
    height:80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 22px;

    background:#0a0a10;
    border-bottom:1px solid rgba(255,255,255,.06);
}


/* ===================================================
   LOGO
=================================================== */

.logo{
    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

.logo img{
    width:56px;
    height:56px;

    border-radius:50%;

    box-shadow:0 0 25px #8b5cf6;

    transition:.35s;
}

/* Small hover animation */

.logo:hover img{
    transform:rotate(-8deg) scale(1.05);
}

.logo-text h2{
    color:#fff;
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
}

.logo-text span{
    display:block;

    margin-top:2px;

    color:#9f6cff;

    font-size:11px;
    letter-spacing:5px;
}


/* ===================================================
   YOUTUBE BUTTON
=================================================== */

.yt-btn{

    display:flex;
    justify-content:center;
    align-items:center;

    width:58px;
    height:58px;

    text-decoration:none;

    color:#fff;

    border:2px solid #8b5cf6;
    border-radius:14px;

    background:rgba(139,92,246,.08);

    backdrop-filter:blur(10px);

    transition:.35s;
}

.yt-btn:hover{

    background:#8b5cf6;

    transform:translateY(-3px);

    box-shadow:0 0 25px rgba(139,92,246,.45);
}

.yt-btn:active{

    transform:scale(.94);

}

.yt-btn i{

    font-size:22px;

    transition:.35s;

}

.yt-btn:hover i{

    transform:rotate(-12deg) scale(1.15);

}


/* ===================================================
   HERO SECTION
=================================================== */

.hero{

    position:relative;

    min-height:calc(100vh - 80px);

    display:flex;
    justify-content:center;
    align-items:center;

    padding:120px 20px 80px;

    overflow:hidden;

    text-align:center;

    background:#09090b;

}


/* Purple background glow */

.hero-glow{

    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    background:#8b5cf6;

    filter:blur(180px);

    opacity:.15;

}


/* Floating symbol */

.hero-symbol{

    position:absolute;

    width:420px;

    opacity:.08;

    filter:drop-shadow(0 0 20px rgba(139,92,246,.2));

    animation:float 8s ease-in-out infinite;

}


/* Hero content */

.hero-content{

    position:relative;

    z-index:5;

    margin-top:-60px;

}

.hero-tag{

    color:#8b5cf6;

    font-size:15px;

    font-weight:600;

    letter-spacing:5px;

}

.hero h1{

    margin-top:22px;

    font-size:clamp(44px,9vw,82px);

    font-weight:700;

    line-height:.95;

}

.hero p{

    margin-top:25px;

    color:#9e9e9e;

    font-size:20px;

}
/* ===================================================
   HERO BUTTON
=================================================== */

.hero-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:250px;
    height:68px;

    margin-top:45px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-size:24px;
    font-weight:700;

    background:linear-gradient(135deg,#7c3aed,#9f67ff);

    box-shadow:0 0 35px rgba(139,92,246,.35);

    transition:.35s;
}

/* Hover */

.hero-btn:hover{

    transform:translateY(-5px) scale(1.03);

    box-shadow:0 0 60px rgba(139,92,246,.6);

}

/* Click */

.hero-btn:active{

    transform:scale(.96);

}


/* ===================================================
   SCROLL INDICATOR
=================================================== */

.scroll-down{

    position:absolute;

    left:50%;
    bottom:35px;

    transform:translateX(-50%);

    color:#8b5cf6;

    font-size:28px;

    animation:scroll 1.8s infinite;

}


/* ===================================================
   HERO ANIMATIONS
=================================================== */

/* Floating Symbol */

@keyframes float{

    0%,100%{

        transform:translateY(0) scale(1);

    }

    50%{

        transform:translateY(-15px) scale(1.05);

    }

}


/* Scroll Arrow */

@keyframes scroll{

    0%,100%{

        transform:translateX(-50%) translateY(0);

    }

    50%{

        transform:translateX(-50%) translateY(12px);

    }

}


/* ===================================================
   PRESETS SECTION
=================================================== */

.presets{

    padding:90px 20px;

}


/* ===================================================
   SECTION TITLE
=================================================== */

.section-title{

    margin-bottom:45px;

    text-align:center;

}

.section-title span{

    color:#8b5cf6;

    font-size:13px;

    font-weight:600;

    letter-spacing:5px;

}

.section-title h2{

    margin-top:10px;

    font-size:38px;

    font-weight:700;

}


/* ===================================================
   PRESET GRID
=================================================== */

.preset-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:24px;

}
/* ===================================================
   PRESET CARD
=================================================== */

.preset-card{

    display:block;

    overflow:hidden;

    text-decoration:none;

    background:#111116;

    border:1px solid rgba(255,255,255,.05);

    border-radius:22px;

    transition:
        transform .35s,
        border-color .35s,
        box-shadow .35s;

}


/* ===================================================
   PRESET IMAGE
=================================================== */

.preset-image{

    position:relative;

    overflow:hidden;

}

.preset-thumb{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    transition:transform .45s;

}


/* ===================================================
   CARD OVERLAY
=================================================== */

.preset-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;
    align-items:center;

    background:rgba(8,8,12,0);

    transition:.45s;

}


/* ===================================================
   OVERLAY CONTENT
=================================================== */

.overlay-content{

    display:flex;

    align-items:center;

    gap:12px;

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .45s,
        transform .45s cubic-bezier(.22,1,.36,1);

}

.overlay-content span{

    color:#fff;

    font-size:24px;

    font-weight:700;

    letter-spacing:2px;

}

.overlay-content i{

    color:#9f6cff;

    font-size:22px;

    transition:.35s;

}


/* ===================================================
   CARD INFO
=================================================== */

.preset-info{

    padding:20px;

}

.preset-info h3{

    color:#fff;

    font-size:22px;

    font-weight:700;

    line-height:1.4;

}


/* ===================================================
   CARD HOVER EFFECTS
=================================================== */

.preset-card:hover{

    transform:translateY(-8px);

    border-color:#8b5cf6;

    box-shadow:0 0 40px rgba(139,92,246,.25);

}

.preset-card:hover .preset-thumb{

    transform:scale(1.08);

}

.preset-card:hover .preset-overlay{

    background:rgba(8,8,12,.72);

    backdrop-filter:blur(6px);

}

.preset-card:hover .overlay-content{

    opacity:1;

    transform:translateY(0);

}

.preset-card:hover .overlay-content i{

    transform:translateX(10px);

}


/* ===================================================
   CARD CLICK EFFECT
=================================================== */

.preset-card:active{

    transform:scale(.98);

}
/* ===================================================
   FOOTER
=================================================== */

.footer{

    margin-top:100px;

    padding:70px 20px 40px;

    text-align:center;

    background:#09090b;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer img{

    width:75px;

    border-radius:50%;

    box-shadow:0 0 25px rgba(139,92,246,.45);

}

.footer h3{

    margin-top:18px;

    font-size:30px;

    font-weight:700;

}

.footer p{

    margin-top:12px;

    color:#8d8d95;

    font-size:16px;

}

.footer-socials{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-top:28px;

}

.footer-socials a{

    display:flex;

    justify-content:center;

    align-items:center;

    width:52px;
    height:52px;

    border-radius:50%;

    text-decoration:none;

    color:#fff;

    background:#15151c;

    transition:.35s;

}

.footer-socials a:hover{

    background:#8b5cf6;

    transform:translateY(-6px);

    box-shadow:0 0 25px rgba(139,92,246,.45);

}

.footer-socials a:active{

    transform:scale(.9);

}

.footer-socials i{

    font-size:22px;

}

.copyright{

    display:block;

    margin-top:35px;

    color:#666;

    font-size:14px;

}
/* ===================================================
   FOOTER LINKS
=================================================== */

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin:25px 0;

}

.footer-links a{

    color:#bdbdc7;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

.footer-links a:hover{

    color:#8b5cf6;

}

@media(max-width:768px){

.footer-links{

gap:14px;

}

.footer-links a{

font-size:14px;

}

   }


/* ===================================================
   LOADER
=================================================== */

#loader{

    position:fixed;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:#07070b;

    overflow:hidden;

    z-index:99999;

    transition:opacity .8s ease, visibility .8s ease;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

    pointer-events:none;

}


/* Purple Glow */

.loader-glow{

    position:absolute;

    width:340px;
    height:340px;

    border-radius:50%;

    background:#8b5cf6;

    filter:blur(120px);

    opacity:.18;

    animation:glow 2.5s ease-in-out infinite;

}


/* Loader Symbol */

#loader img{

    width:170px;

    position:relative;

    z-index:2;

    animation:breathing 2.5s ease-in-out infinite;

}


/* Loader Title */

#loader h2{

    margin-top:30px;

    color:#fff;

    font-size:34px;

    letter-spacing:4px;

}


/* Loading Text */

#loading-text{

    margin-top:12px;

    color:#9f6cff;

    font-size:17px;

    letter-spacing:2px;

}


/* ===================================================
   LOADER ANIMATIONS
=================================================== */

@keyframes breathing{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

}

@keyframes glow{

    0%,100%{

        transform:scale(1);

        opacity:.15;

    }

    50%{

        transform:scale(1.18);

        opacity:.28;

    }

}


/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width:768px){

    .header{

        height:74px;

        padding:0 18px;

    }

    .logo img{

        width:48px;
        height:48px;

    }

    .logo-text h2{

        font-size:20px;

    }

    .logo-text span{

        font-size:9px;

        letter-spacing:3px;

    }

    .yt-btn{

        width:50px;
        height:50px;

    }

    .hero{

        padding:100px 20px 70px;

    }

    .hero-symbol{

        width:280px;

    }

    .hero-glow{

        width:450px;
        height:450px;

    }

    .hero h1{

        font-size:clamp(36px,11vw,58px);

    }

    .hero p{

        font-size:17px;

    }

    .hero-btn{

        width:220px;
        height:60px;

        font-size:20px;

    }

    .section-title h2{

        font-size:32px;

    }

    .preset-info h3{

        font-size:19px;

    }

    .footer h3{

        font-size:26px;

    }

}

@media (max-width:480px){

    .hero-content{

        margin-top:-30px;

    }

    .hero h1{

        font-size:34px;

    }

    .hero-tag{

        font-size:13px;

        letter-spacing:3px;

    }

    .hero-btn{

        width:200px;
        height:56px;

        font-size:18px;

    }

    .scroll-down{

        font-size:22px;

    }

}
/* ===================================================
   ABOUT PAGE
=================================================== */

.about-page{

    position: relative;

    overflow: hidden;

    min-height: 100vh;

    padding: 140px 20px 80px;

    background: linear-gradient(
        180deg,
        #07070b 0%,
        #09090f 50%,
        #07070b 100%
    );

}

/* Glow */

.about-page::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-180px;

    left:-180px;

    background:#8b5cf6;

    opacity:.12;

    filter:blur(130px);

    border-radius:50%;

}

.about-page::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    bottom:-180px;

    right:-180px;

    background:#8b5cf6;

    opacity:.10;

    filter:blur(120px);

    border-radius:50%;

}

.about-page .container{

    position:relative;

    z-index:2;

    max-width:950px;

    margin:auto;

}

/* Label */

.section-label{

    display:inline-block;

    color:#8b5cf6;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

}

/* Heading */

.about-page h1{

    font-size:52px;

    color:#fff;

    line-height:1.2;

    margin-bottom:22px;

}

/* Paragraph */

.about-page p{

    color:#bdbdc7;

    font-size:17px;

    line-height:1.9;

    margin-bottom:22px;

}

/* Badge */

.about-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin:25px 0 35px;

    padding:12px 18px;

    border-radius:999px;

    background:rgba(139,92,246,.08);

    border:1px solid rgba(139,92,246,.25);

    color:#fff;

    font-weight:600;

}

.about-badge i{

    color:#8b5cf6;

}

/* Cards */

.about-features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:22px;

    margin-top:60px;

}

.feature-card{

    padding:30px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(139,92,246,.18);

    backdrop-filter:blur(16px);

    transition:.35s ease;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#8b5cf6;

    box-shadow:0 15px 40px rgba(139,92,246,.25);

}

.feature-card h2{

    color:#fff;

    margin-bottom:14px;

    font-size:22px;

}

.feature-card p{

    margin:0;

    font-size:15px;

}

/* Bottom Box */

.about-footer{

    margin-top:70px;

    padding:40px;

    text-align:center;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(139,92,246,.18);

}

.about-footer h3{

    color:#fff;

    margin-bottom:12px;

    font-size:28px;

}

.about-footer p{

    margin:0;

}

/* Mobile */

@media(max-width:768px){

.about-page{

padding:120px 20px 70px;

}

.about-page h1{

font-size:36px;

}

.about-page p{

font-size:16px;

}

.about-features{

grid-template-columns:1fr;

}

.about-footer{

padding:30px 22px;

}

       }
