@import "variables.css";
@import "navbar.css";
@import "sidebar.css";
@import "buttons.css";
@import "cards.css";
@import "panels.css";
@import "hero.css";
@import "animations.css";
@import "responsive.css";


*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


body{

    background:

    linear-gradient(

    180deg,

    var(--bg-primary),

    var(--bg-secondary)

    );

    color:var(--text);

    font-family:

    "Segoe UI",

    sans-serif;

}

/*==========================================
    APP LAYOUT
==========================================*/

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

button,
input,
textarea,
select {
    font: inherit;
}

.df-app {
    min-height: 100vh;
}

.df-main {
    min-height: 100vh;
    margin-left: 260px;
}

.df-content {
    padding: 32px;
}

.df-section {
    margin-top: 42px;
}

.df-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    margin-bottom: 20px;
}

.df-section__eyebrow,
.df-hero__eyebrow {
    margin-bottom: 6px;

    color: var(--primary-light);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.df-section__title {
    font-size: 30px;
    font-weight: 800;
}

.df-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/*==========================================
    SERVER STATS
==========================================*/

.df-server-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 24px;
}

.df-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 68px;
    padding: 14px 18px;

    background:
        linear-gradient(
            180deg,
            rgba(24, 31, 46, 0.96),
            rgba(14, 19, 30, 0.96)
        );

    border: 1px solid rgba(0, 184, 255, 0.18);
    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22);
}

.df-stat__label {
    color: var(--text-secondary);
    font-weight: 600;
}

.df-stat__value {
    color: var(--primary-light);
    font-size: 18px;
}

/*==========================================
    TERMS OF SERVICE
==========================================*/

.df-tos {
    margin-top: 34px;
    padding: 32px;

    background:
        linear-gradient(
            180deg,
            rgba(24, 31, 46, 0.96),
            rgba(14, 19, 30, 0.96)
        );

    border: 1px solid rgba(0, 184, 255, 0.15);
    border-radius: 20px;
}

.df-tos__title {
    margin-bottom: 14px;
    font-size: 28px;
}

.df-tos__text {
    max-width: 900px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/*==========================================
    TERMS OF SERVICE PAGE
==========================================*/

.df-tos-page {

    max-width: 1000px;

    margin: 20px auto;

    padding: 48px;

    background:
        linear-gradient(
            180deg,
            rgba(24, 31, 46, 0.98),
            rgba(14, 19, 30, 0.98)
        );

    border: 1px solid rgba(0, 184, 255, 0.16);

    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

}

.df-tos-page__title {

    margin-bottom: 14px;

    font-size: 46px;

    font-weight: 800;

}

.df-tos-page__intro {

    margin-bottom: 32px;

    color: var(--text-secondary);

    font-size: 18px;

    line-height: 1.7;

}

.df-tos-page__content {

    display: flex;

    flex-direction: column;

    gap: 18px;

    color: var(--text-secondary);

    font-size: 17px;

    line-height: 1.8;

}

.df-tos-page__content p {

    padding: 18px 20px;

    background: rgba(255, 255, 255, 0.025);

    border-left: 3px solid var(--primary);

    border-radius: 8px;

}

/*==========================================
                SHOPPING CART
==========================================*/

.df-cart-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(6px);

    display:flex;

    justify-content:flex-end;

    opacity:0;

    visibility:hidden;

    transition:.25s;

    z-index:9999;

}

.df-cart-overlay.active{

    opacity:1;

    visibility:visible;

}

.df-cart{

    width:420px;

    max-width:100%;

    height:100%;

    background:#141c28;

    display:flex;

    flex-direction:column;

    transform:translateX(100%);

    transition:.3s;

    box-shadow:-10px 0 35px rgba(0,0,0,.45);

}

.df-cart-overlay.active .df-cart{

    transform:translateX(0);

}

.df-cart__header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.df-cart__header h2{

    margin:0;

    color:white;

}

.df-cart__close{

    border:none;

    background:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

.df-cart__items{

    flex:1;

    overflow-y:auto;

    padding:28px;

    color:#B8C6D8;

}

.df-cart__footer{

    padding:28px;

    border-top:1px solid rgba(255,255,255,.08);

}