/* ===========================
   GTPS.NET STORE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Poppins",sans-serif;
}

body{

    background:#09090B;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ===========================
        NAVBAR
=========================== */

header{

    width:100%;

    padding:25px 8%;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:45px;

}

.logo h2{

    color:white;

    font-size:28px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#94A3B8;

    font-size:17px;

    transition:.3s;

}

.nav-links a:hover{

    color:#3B82F6;

}

.btn{

    background:#3B82F6;

    color:white;

    padding:14px 28px;

    border-radius:12px;

    transition:.3s;

}

.btn:hover{

    background:#2563EB;

}

/* ===========================
        HERO
=========================== */

.hero{

    width:100%;
    min-height:85vh;

    padding:0 8%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;

}

.hero-left{

    flex:1;

}

.badge{

    display:inline-block;

    padding:10px 20px;

    background:#111827;

    color:#3B82F6;

    border:1px solid rgba(59,130,246,.2);

    border-radius:999px;

    font-size:14px;

    margin-bottom:25px;

}

.hero-left h1{

    color:white;

    font-size:68px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#3B82F6;

}

.hero-left p{

    color:#94A3B8;

    font-size:20px;

    line-height:35px;

    max-width:650px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:#3B82F6;

    color:white;

    padding:16px 35px;

    border-radius:12px;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#2563EB;

}

.btn-secondary{

    color:white;

    border:1px solid #2a2a2a;

    padding:16px 35px;

    border-radius:12px;

    transition:.3s;

}

.btn-secondary:hover{

    border-color:#3B82F6;

    color:#3B82F6;

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;
    max-width:520px;

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/*============================
        FEATURES
============================*/

.features{

    padding:120px 8%;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#3B82F6;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;

}

.section-title h2{

    color:white;
    font-size:52px;
    margin:18px 0;

}

.section-title p{

    color:#94A3B8;
    font-size:18px;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.feature-card{

    background:#111827;
    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:40px;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#3B82F6;

    box-shadow:0 20px 50px rgba(59,130,246,.15);

}

.feature-card i{

    font-size:42px;

    color:#3B82F6;

    margin-bottom:25px;

}

.feature-card h3{

    color:white;

    font-size:28px;

    margin-bottom:15px;

}

.feature-card p{

    color:#94A3B8;

    line-height:30px;

}

/*============================
        PREVIEW
============================*/

.preview{

    padding:120px 8%;

}

.preview-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    max-width:1200px;
    margin:auto;

}

.preview-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    padding:12px;

    transition:.35s;

}

.preview-card:hover{

    transform:translateY(-8px);

    border-color:#3B82F6;

    box-shadow:0 20px 50px rgba(59,130,246,.18);

}

.preview-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;

}

.preview-card:hover img{

    transform:scale(1.05);

}

/*========================
PRICING
========================*/

.pricing{

    padding:120px 8%;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.price-card{

    background:#131b2b;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:45px;

    text-align:center;

    position:relative;

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:#3b82f6;

    box-shadow:0 20px 50px rgba(59,130,246,.25);

}

.price-card h3{

    font-size:28px;

}

.price-card h1{

    font-size:55px;

    margin:20px 0;

    color:#3b82f6;

}

.price-card p{

    color:#94A3B8;

}

.price-card ul{

    list-style:none;

    margin:35px 0;

}

.price-card ul li{

    padding:12px 0;

    color:#cbd5e1;

}

.price-btn{

    display:inline-block;

    width:100%;

    padding:16px;

    border-radius:12px;

    background:linear-gradient(135deg,#3B82F6,#2563EB);

    color:#fff;

    text-decoration:none;

    font-weight:600;

}

.featured{

    border:2px solid #3b82f6;

    transform:scale(1.05);

}

.popular{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:#3B82F6;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

}



    margin:15px 0;
    color:#E5E7EB;

}

.price-card i{

    color:#3b82f6;
    margin-right:8px;

}

.price-btn{

    display:inline-block;
    width:100%;
    padding:15px;
    border-radius:12px;
    background:linear-gradient(135deg,#3B82F6,#2563EB);
    color:#fff;
    text-decoration:none;
    font-weight:600;

}

.active{

    transform:scale(1.05);
    border:2px solid #3B82F6;

}

.popular{

    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#3B82F6;
    color:white;
    padding:8px 20px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

/*=========================
        COMMUNITY
==========================*/

.community{

    padding:120px 8%;

}

.community-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.community-card{

    background:#151d2f;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px;

    text-align:center;

    text-decoration:none;

    color:white;

    transition:.35s;

}

.community-card i{

    font-size:65px;

    color:#3B82F6;

    margin-bottom:20px;

}

.community-card h3{

    font-size:28px;

    margin-bottom:12px;

}

.community-card p{

    color:#94A3B8;

}

.community-card:hover{

    transform:translateY(-12px);

    border-color:#3B82F6;

    box-shadow:0 20px 45px rgba(59,130,246,.25);

}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}

.navbar a.active {
    color: #4da3ff;
    border-bottom: 2px solid #4da3ff;
}

.features{
    padding:100px 8%;
    background:#0b0f19;
}

.features h2{
    text-align:center;
    color:#fff;
    margin-bottom:40px;
}

.command-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:20px;
}

.command-card{
    background:#111827;
    border:1px solid #1e293b;
    border-radius:12px;
    padding:20px;
    transition:.3s;
}

.command-card:hover{
    border-color:#3b82f6;
    transform:translateY(-5px);
}

.command-card h3{
    color:#3b82f6;
    font-family:monospace;
    margin-bottom:10px;
}

.command-card p{
    color:#cbd5e1;
}

body{
    margin:0;
    color:white;
    background:
    radial-gradient(circle at top left,#1d4ed8 0%,transparent 30%),
    radial-gradient(circle at bottom right,#2563eb 0%,transparent 30%),
    linear-gradient(180deg,#050816,#0b1120,#050816);

    background-attachment:fixed;
}

body::before{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#2563eb;
    filter:blur(180px);
    opacity:.15;
    top:-150px;
    left:-150px;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#3b82f6;
    filter:blur(180px);
    opacity:.15;
    bottom:-150px;
    right:-150px;
    z-index:-1;
}

body{
    background-color:#050816;
    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:50px 50px;
}

nav{
    background:rgba(10,10,15,.65);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,.08);
}
.card{
    background:rgba(18,25,40,.75);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.hero h1{
    font-size:70px;
    color:white;
    text-shadow:
    0 0 20px #3b82f6,
    0 0 40px #2563eb;
}

.footer{
    margin-top:100px;
    padding:30px 20px;
    background:#070b14;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.footer p{
    color:#9ca3af;
    margin:8px 0;
    font-size:14px;
}

.footer a{
    color:#3b82f6;
    text-decoration:none;
}

.footer a:hover{
    text-decoration:underline;
}

.developer{
    color:#ffffff;
    font-weight:600;
}

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#050816;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .6s ease, visibility .6s;
}

.loader-content{
    text-align:center;
}

.loader-content h1{
    color:white;
    font-size:48px;
    margin-bottom:10px;
}

.loader-content p{
    color:#9ca3af;
    margin-bottom:30px;
}

.spinner {
    width: 70px;
    height: 70px;
    margin: 30px auto;

    border: 4px solid rgba(255,255,255,.1);
    border-top: 4px solid #3b82f6;
    border-right: 4px solid #60a5fa;

    border-radius: 50%;
    animation: spin .8s linear infinite;

    box-shadow: 0 0 25px rgba(59,130,246,.5);
}

#loader{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#050816;
    z-index:99999;

    opacity:1;
    transition:opacity .5s ease;
}

#loader.hide{
    opacity:0;
    pointer-events:none;
}

@media (max-width: 768px) {

    h1{
        font-size:32px;
    }

    p{
        font-size:15px;
    }

    .navbar{
        padding:15px;
    }

    .navbar a{
        margin:0 8px;
        font-size:14px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

}

.order-section{
    padding:100px 10%;
    text-align:center;
}

.order-section h2{
    color:#fff;
    font-size:42px;
    margin-bottom:10px;
}

.order-section p{
    color:#9ca3af;
    margin-bottom:40px;
}

.order-form{
    max-width:650px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.order-form input,
.order-form select,
.order-form textarea{

    width:100%;
    padding:16px 20px;

    background:#101827;
    color:white;

    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;

    font-size:16px;

    transition:.3s;
}

.order-form textarea{
    min-height:140px;
    resize:none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus{

    outline:none;
    border-color:#3b82f6;

    box-shadow:0 0 15px rgba(59,130,246,.3);
}

.order-form button{

    padding:16px;

    border:none;

    border-radius:12px;

    background:linear-gradient(90deg,#2563eb,#3b82f6);

    color:white;

    font-size:17px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.order-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 0 20px rgba(59,130,246,.45);

}