/* --- TEMA GLOBAL DAN TEMA TERANG --- */
:root {
    --bg-dark: #121212;
    --text-light: #e0e0e0;
    --text-primary: #42a5f5;
    --box-bg: #1e1e1e;
    --border-color: #333333;
    --red-accent: #82b1ff;
    --header-bg: #000;
    --cta-bg: #0d0d0d;
    --footer-bg: #000;
    --hero-overlay: rgba(0, 0, 0, 0.7);
}

/* DEFINISI TEMA TERANG */
.light-theme {
    --bg-dark: #f0f0f0;
    --text-light: #121212;
    --text-primary: #007bff;
    --box-bg: #ffffff;
    --border-color: #dddddd;
    --header-bg: #ffffff;
    --cta-bg: #e5e5e5;
    --footer-bg: #ffffff;
    --hero-overlay: rgba(255, 255, 255, 0.7);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* LAYOUT CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

h3 {
    text-align: center;
    color: var(--text-primary);
    font-size: 2.2em;
    padding-top: 50px;
    margin-bottom: 30px;
}

/* HEADER / NAVBAR */
header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--text-primary);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    color: var(--text-primary);
    font-size: 1.8em;
    white-space: normal;
    word-break: break-word;
    flex-shrink: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    font-size: 0.95em;
    gap: 15px;
}

nav a i {
    margin-right: 0;
    transition: 0.3s;
}

nav a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 5px var(--text-primary);
}

nav a:hover i {
    transform: scale(1.2);
    color: var(--text-primary);
}

#theme-toggle {
    background: none;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    font-size: 1.1em;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 0;
    outline: none;
    flex-shrink: 0;
}

#theme-toggle:hover {
    background-color: var(--text-primary);
    color: var(--bg-dark);
}

/* GAYA IKON HAMBURGER */
.menu-icon {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5em;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

/* HERO SECTION */
.hero-section {
    background:
        radial-gradient(circle at top,
            rgba(66, 165, 245, .20),
            transparent 50%),
        linear-gradient(90deg,
            #050505,
            #0a0f1f,
            #050505);

    text-align: center;
    padding: 150px 20px;
    border-bottom: 3px solid #42a5f5;
    position: relative;
    overflow: hidden;
}

.store-name {
    animation: glowPulse 3s infinite;
    font-size: 4em;
    color: var(--text-primary);
    letter-spacing: 5px;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.tagline {
    font-size: 1.8em;
    margin-bottom: 30px;
    opacity: 0.8;
}

.description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    padding: 0 10px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--text-light);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(66, 165, 245, 0.4);
}

.primary-btn:hover {
    background-color: #fff;
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 165, 245, 0.6);
}

.secondary-btn {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.secondary-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(66, 165, 245, 0.5);
}

/* --- ORDER PAGE BUTTON STYLE --- */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-group .btn {
    text-align: center;
    font-size: 1rem;
    border-radius: 50px;
    padding: 12px 25px;
    transition: 0.3s ease;
    min-width: 220px;
}

/* Hover*/
.btn-group .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(66, 165, 245, 0.5);
}

.cta-section {
    margin-bottom: 60px;
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 50px 20px;
}

.why-choose-us .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
}

.features {

    margin-top: 50px;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    padding-bottom: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.feature-box {
    background-color: var(--box-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--text-primary);
    border-radius: 8px;
    flex: 1 1 250px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #252525;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(66, 165, 245, 0.3);
}

/* TEMA TERANG */
.light-theme .feature-box:hover {
    background-color: #eee;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
}

.feature-box h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

/* PRODUCTS */
.products-section {
    background-color: var(--box-bg);
    padding: 50px 20px 80px 20px;
    border-top: 1px solid var(--border-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

.product-category {
    background-color: var(--bg-dark);
    padding: 25px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    transition: all 0.3s ease;
}

.product-category:hover {
    border-color: var(--text-primary);
    box-shadow: 0 0 15px rgba(66, 165, 245, 0.2);
}

.product-category h4 {
    color: var(--text-primary);
    font-size: 1.4em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--text-primary);
}

.product-category ul {
    list-style: none;
}

.product-category ul li {
    padding: 8px 0;
    color: #ccc;
    position: relative;
    padding-left: 20px;
    font-size: 0.95em;
}

/* TEMA TERANG */
.light-theme .product-category ul li {
    color: var(--text-light);
}

.product-category ul li::before {
    content: "-";
    color: var(--text-primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--cta-bg);
}

/* FOOTER */
footer {
    background-color: var(--footer-bg);
    text-align: center;
    padding: 25px 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: #888;
}

/* SCROLL ANIM */
.scroll-reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

img,
iframe,
video {
    max-width: 100%;
    height: auto;
}

/* TABLET */
@media(max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media(max-width:600px) {
    .container {
        padding: 0 15px;
    }

    .nav-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        width: 100%;
    }

    .logo {
        flex-grow: 0;
        flex-shrink: 1;
        min-width: 0;
        font-size: 1.4em;
        line-height: 1.2;
        margin-right: 10px;
    }

    .menu-icon {
        display: block;
        flex-shrink: 0;
    }

    #main-nav-menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background-color: var(--header-bg);
        border-top: 1px solid var(--border-color);
        padding: 15px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        align-items: flex-start;
        z-index: 999;
    }

    #main-nav-menu.open {
        display: flex;
    }

    #main-nav-menu nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-bottom: 10px;
    }

    #main-nav-menu nav a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    #main-nav-menu #theme-toggle {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .hero-section {
        padding: 100px 15px;
    }

    .store-name {
        font-size: 2.2em;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1.2em;
    }

    .features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .feature-box {
        flex: 1 1 100%;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    h3 {
        font-size: 1.6em;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-category {
        width: 100%;
        margin: 0 auto;
    }

}

/* ========================= */
/* PORTFOLIO PAGE FULL */
/* ========================= */

/* HERO */
.portfolio-hero {
    position: relative;
    overflow: hidden;

    padding: 120px 20px;
    text-align: center;

    background:
        radial-gradient(circle at top,
            rgba(66, 165, 245, .12),
            transparent 60%),
        linear-gradient(90deg,
            #050505,
            #0a0f1f,
            #050505);

    border-bottom:
        1px solid rgba(66, 165, 245, .25);
}

.portfolio-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #42a5f5;
    filter: blur(200px);
    opacity: .15;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.portfolio-hero h1 {

    font-size: 4rem;

    color: #42a5f5;

    text-shadow:
        0 0 20px #42a5f5,
        0 0 50px rgba(66, 165, 245, .5);

    margin-bottom: 15px;
}

.portfolio-hero p {

    font-size: 1.3rem;

    opacity: .85;

    max-width: 700px;

    margin: auto;
}

/* SECTION */
.portfolio-section {
    padding: 40px 20px 60px;
}

/* GRID LIST */
.portfolio-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.portfolio-item {
    background: var(--box-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: var(--text-primary);
    box-shadow: 0 15px 30px rgba(66, 165, 245, 0.25);
}

/* IMAGE */
.portfolio-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

/* CONTENT */
.portfolio-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TITLE */
.portfolio-content h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: var(--text-light);
}

/* META */
.portfolio-meta {
    font-size: 0.85em;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* BADGE */
.portfolio-badge {
    display: inline-block;
    font-size: 0.7em;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--text-primary);
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    width: fit-content;
}

/* DESC */
.portfolio-content p {
    font-size: 0.9em;
    opacity: 0.85;
    flex-grow: 1;
}

/* BUTTON FIX */
.portfolio-content .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 10px;
    font-size: 0.9em;
    border-radius: 50px;
}

/* BUTTON HOVER */
.portfolio-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(66, 165, 245, 0.4);
}

/* IMAGE HOVER */
.portfolio-img:hover {
    filter: brightness(1.1);
}

/* LIGHT THEME SUPPORT */
.light-theme .portfolio-item:hover {
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

/* MOBILE */
@media(max-width:600px) {
    .portfolio-hero {
        padding: 80px 15px 40px;
    }

    .portfolio-hero h1 {
        font-size: 1.8em;
    }

    .portfolio-list {
        grid-template-columns: 1fr;
    }
}

/* ================================= */
/* CORD STORE V2 PREMIUM */
/* ================================= */

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(66, 165, 245, .15);
    border: 1px solid rgba(66, 165, 245, .35);
    color: #42a5f5;
    margin-bottom: 20px;
    font-size: .9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.store-name {
    font-size: 5rem;
    font-weight: 800;
    text-shadow:
        0 0 15px rgba(66, 165, 245, .4),
        0 0 40px rgba(66, 165, 245, .2);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 15px;
}

.description {
    opacity: .85;
    font-size: 1.05rem;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats {
    padding: 90px 20px;
}

.stats .container {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .04),
            rgba(255, 255, 255, .02));

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

    backdrop-filter: blur(10px);

    padding: 35px;

    border-radius: 18px;

    text-align: center;

    transition: .3s ease;
}

.stat-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(66, 165, 245, .5);

    box-shadow:
        0 0 35px rgba(66, 165, 245, .2);
}

.stat-card h2 {
    font-size: 2.8rem;
    color: #42a5f5;
    margin-bottom: 10px;
}

.stat-card p {
    opacity: .8;
}

/* ========================= */
/* CARD PREMIUM */
/* ========================= */

.feature-box,
.product-category {

    backdrop-filter:
        blur(10px);

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

    border-radius:
        16px;

    transition:
        .35s ease;
}

.feature-box:hover,
.product-category:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(66, 165, 245, .45);

    box-shadow:
        0 0 30px rgba(66, 165, 245, .2);
}

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

h3 {

    position: relative;

    display: block;

    margin-bottom: 40px;
}

h3::after {

    content: "";

    display: block;

    width: 80px;
    height: 4px;

    margin: 15px auto 0;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #42a5f5,
            #82b1ff);
}

/* ========================= */
/* CTA */
/* ========================= */

.cta-section {

    background:
        linear-gradient(180deg,
            rgba(66, 165, 245, .04),
            rgba(66, 165, 245, .01));

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

.cta-section h3 {
    padding-top: 0;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn {

    transition:
        .3s ease;

    font-weight:
        700;
}

.primary-btn {

    background:
        linear-gradient(135deg,
            #42a5f5,
            #82b1ff);

    color: #000;
}

.primary-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 25px rgba(66, 165, 245, .5);
}

.secondary-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 0 25px rgba(66, 165, 245, .35);
}

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

footer {

    padding: 40px 20px;

    background:
        #080808;
}

footer p {
    opacity: .7;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px) {

    .store-name {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-card h2 {
        font-size: 2rem;
    }

}

/* ========================= */
/* DISCORD WIDGET */
/* ========================= */

.discord-widget {
    padding: 80px 20px;
}

.discord-widget iframe {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 25px rgba(66, 165, 245, .15);
}

/* ========================= */
/* FLOATING BUTTON */
/* ========================= */

.floating-contact {

    position: fixed;

    right: 25px;
    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 15px;

    z-index: 9999;
}

.floating-contact a {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;

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

    font-size: 1.5rem;

    text-decoration: none;

    color: white;

    background: #42a5f5;

    box-shadow:
        0 0 20px rgba(66, 165, 245, .35);

    transition: .3s;
}

.floating-contact a:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 0 30px rgba(66, 165, 245, .6);
}

.recent-orders {
    padding: 90px 20px;
}

.orders-grid {

    display: grid;

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

    gap: 20px;
}

.order-card {

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

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

    border-radius:
        18px;

    padding:
        25px;

    transition:
        .3s;
}

.order-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 0 25px rgba(66, 165, 245, .2);
}

.order-card span {

    color: #42a5f5;

    font-size: .8rem;
}

.order-card h4 {

    margin-top: 10px;
}

.leaderboard {
    padding: 80px 20px;
}

.leaderboard-card {

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

    border-radius:
        18px;

    padding:
        25px;

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

.buyer {

    display: flex;

    justify-content:
        space-between;

    padding:
        15px 0;

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

.buyer:last-child {
    border-bottom: none;
}

#loader {

    position: fixed;

    inset: 0;

    background: #080808;

    z-index: 999999;

    display: flex;

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

    transition: .5s;
}

.loader-logo {

    color: #42a5f5;

    font-size: 2rem;

    font-weight: 800;

    letter-spacing: 4px;
}

header {

    backdrop-filter:
        blur(14px);

    background:
        rgba(0, 0, 0, .65);
}

body::before {

    content: "";

    position: fixed;

    width: 600px;
    height: 600px;

    background:
        rgba(66, 165, 245, .08);

    filter:
        blur(140px);

    top: -250px;
    right: -250px;

    z-index: -1;
}

.status-section {
    padding: 80px 20px;
}

.status-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.status-card {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 20px;

    border-radius: 16px;

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

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

.status-card span {

    width: 12px;
    height: 12px;

    border-radius: 50%;
}

.stat-card:hover {

    transform:
        translateY(-8px);

}

.online span {
    background: #00ff88;

    box-shadow:
        0 0 12px #00ff88;
}

.trust-badges {
    padding: 40px 20px;
}

.trust-badges .container {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.badge-item {

    padding: 12px 18px;

    border-radius: 999px;

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

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

.store-name {

    text-shadow:
        0 0 25px #42a5f5,
        0 0 50px #42a5f5;

}

header {

    backdrop-filter:
        blur(20px);

}

#tsparticles {
    position: fixed;
    inset: 0;
    z-index: -1;
}

/* SALES POPUP */

#sales-popup {

    position: fixed;

    left: 25px;

    bottom: 25px;

    width: 320px;

    background: rgba(10, 10, 10, .95);

    border: 1px solid rgba(66, 165, 245, .3);

    backdrop-filter: blur(20px);

    border-radius: 18px;

    padding: 15px;

    display: flex;

    align-items: center;

    gap: 15px;

    z-index: 9999;

    transform: translateY(150%);

    transition: .5s;

    box-shadow:
        0 0 25px rgba(66, 165, 245, .2);
}

#sales-popup.show {

    transform: translateY(0);
}

.sales-icon {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(66, 165, 245, .15);

    font-size: 22px;
}

.sales-content h4 {

    margin: 0;

    color: #42a5f5;

    font-size: 15px;
}

.sales-content p {

    margin-top: 5px;

    font-size: 13px;

    opacity: .8;
}

/* LOADER */

#loader {

    position: fixed;

    inset: 0;

    background: #050505;

    z-index: 999999;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .8s;
    background:
        radial-gradient(circle,
            rgba(66, 165, 245, .08),
            transparent 60%),
        #050505;

}

#loader.hide {

    opacity: 0;

    visibility: hidden;
}

.loader-content {

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    transform: translateY(-50px);

}

.loader-content h1 {

    font-size: 4rem;
    letter-spacing: 6px;
    color: #42a5f5;

    margin-bottom: 20px;

    text-shadow:
        0 0 20px #42a5f5,
        0 0 40px #42a5f5;
}

.loader-content p {

    opacity: .8;

    margin-bottom: 20px;
}

.loader-bar {

    width: 350px;

    height: 12px;

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

    border-radius: 999px;

    overflow: hidden;

}

.loader-progress {

    width: 0%;

    height: 100%;

    background: #42a5f5;

    box-shadow:
        0 0 15px #42a5f5;

    animation:
        loadbar 2.5s linear forwards;
}

@keyframes loadbar {

    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes glowPulse {

    0% {

        text-shadow:
            0 0 10px #42a5f5;
    }

    50% {

        text-shadow:
            0 0 30px #42a5f5,
            0 0 60px #42a5f5;
    }

    100% {

        text-shadow:
            0 0 10px #42a5f5;
    }

}

.notify-panel {

position: fixed;

top: 90px;

right: 30px;

width: 280px;

background: rgba(10,10,10,.95);

backdrop-filter: blur(20px);

border: 1px solid rgba(66,165,245,.2);

border-radius: 15px;

padding: 15px;

z-index: 999;

}

.notify-header {

color: #42a5f5;

font-weight: 700;

margin-bottom: 10px;

}

.notify-item {

padding: 10px 0;

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

}

/* TESTIMONIAL */

.testimonial-gallery{

    padding:80px 20px;
}

.testimonial-grid{

    display:grid;

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

    gap:20px;
}

.testimonial-item{

    overflow:hidden;

    border-radius:18px;

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

    transition:.3s;
}

.testimonial-item:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 25px rgba(66,165,245,.25);
}

.testimonial-item img{

    width:100%;

    display:block;
}

/* PARTICLES */

#tsparticles {

    position: fixed;

    inset: 0;

    z-index: -1;

    pointer-events: none;

    opacity: .6;

}

.price-tag{

    margin:15px 0;

    font-size:.9rem;

    opacity:.8;

}

.price-tag span{

    display:block;

    margin-top:5px;

    color:#42a5f5;

    font-size:1.4rem;

    font-weight:700;

}

.product-badge{

  display:inline-block;

  padding:6px 12px;

  border-radius:999px;

  background:#42a5f5;

  color:#000;

  font-size:.75rem;

  font-weight:700;

  margin-bottom:15px;

}

.price-tag{

  margin:15px 0;

  opacity:.8;

}

.price-tag span{

  display:block;

  color:#42a5f5;

  font-size:1.4rem;

  font-weight:700;

  margin-top:5px;

}

.product-filter{

  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;

}

.product-filter button{

  background:#111;
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  cursor:pointer;

}

.product-filter button.active{

  background:#42a5f5;
  color:#000;

}

.featured-card{

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

  gap:20px;

  padding:40px;

  border-radius:20px;

  background:linear-gradient(
    135deg,
    rgba(66,165,245,.15),
    rgba(66,165,245,.03)
  );

  border:1px solid rgba(66,165,245,.2);

}

.product-count{

  display:block;

  margin-top:10px;

  color:#42a5f5;

  font-size:.8rem;

}

.portfolio-card{

  overflow:hidden;

  border-radius:20px;

  background:#111;

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

}

.portfolio-card img{

  width:100%;

  height:220px;

  object-fit:cover;

}

.portfolio-card h4{

  padding:20px 20px 0;

}

.portfolio-card p{

  padding:0 20px 20px;

}

#live-popup{

  position:fixed;

  top:90px;
  right:30px;

  width:240px;

  background:#0b0b0b;

  border:1px solid
  rgba(66,165,245,.3);

  border-radius:16px;

  z-index:9999;

  overflow:hidden;

}

.popup-title{

  padding:15px;

  color:#42a5f5;

  font-weight:700;

}

#popup-list{

  list-style:none;
  padding:0;
  margin:0;

}

#popup-list li{

  padding:12px 15px;

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

}

.floating-discord{

  position:fixed;

  bottom:30px;
  right:30px;

  width:60px;
  height:60px;

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

  border-radius:50%;

  background:#5865F2;

  color:#fff;

  font-size:1.7rem;

  z-index:9999;

  box-shadow:
  0 0 20px
  rgba(88,101,242,.5);

}

.floating-whatsapp{

  position:fixed;

  bottom:100px;
  right:30px;

  width:60px;
  height:60px;

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

  border-radius:50%;

  background:#25D366;

  color:#fff;

  font-size:1.7rem;

  z-index:9999;

  box-shadow:
  0 0 20px
  rgba(37,211,102,.5);

}