* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(180deg, #071022 0%, #081226 40%, #071018 100%);
    color: white;
    font-family: sans-serif;
}

/* ===== HEADER ===== */
header {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    padding: 5px 15px;
    border-bottom: 1px solid #5B1D27;
    backdrop-filter: blur(6px);
    background: linear-gradient(
        180deg,
        rgba(7, 16, 34, 0.314) 0%,
        rgba(8, 18, 38, 0.314) 40%,
        rgba(7, 16, 24, 0.314) 100%
    );
}
.logo {
    height: 50px;
}

header .title {
    margin-left: 4px;
    font-size: 20px;
}
.title {
    font-weight: 1000;
    color: rgb(218, 25, 56);
}
header>a {
    display: flex;
    align-items: center;
    height: 100%;
}

a {
    text-decoration: none;
    color: white;
}
nav {
    display: flex;
    gap: 10px;
}
nav>a {
    font-weight: 600;
    text-decoration: none;
    color: white;
    padding: 7px 15px;
    border-radius: 5px;
    font-size: 16px;
    transition: .2s;
}
nav>a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.login>a {
    background-color: rgb(37, 37, 255);
    border-radius: 5px;
    transition: .2s;
    padding: 10px 25px;
    font-size: 16px;
    box-shadow: 0 0 10px rgba(37, 37, 255, 0.6);
}
.login>a:hover {
    cursor: pointer;
    background-color: rgb(58, 58, 255);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 25px;
    gap: 5px;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== MAIN ===== */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    min-height: 100svh;
    padding: 50px 0;
    justify-content: center;
}

.intro>span {
    font-size: 20px;
}

/* ===== ABOUT US ===== */
section#about-us {
    justify-content: space-around;
    flex-direction: row;
    gap: 20px;
}

.about-us {
    width: 55%;
    border: 1px solid rgb(91, 29, 39);
    border-radius: 10px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.314);
}
.about-us>h2, .product>h2{
    font-weight: 700;
    margin: 10px 0;
}

h3 {
    font-weight: 1000;
}
ul {
    list-style: none;
}
li>p, .product li {
    color: #94a3b8;
}

/* ===== PRODUCTS ===== */
.products {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.antiCaptcha {
    color: rgb(60, 60, 255);
    font-weight: 1000;
}

.product {
    border: 1px solid rgb(91, 29, 39);
    border-radius: 10px;
    padding: 15px 30px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transition: .2s;
}
/* .product:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: scale(1.01);
} */
.product>p {
    margin-bottom: 10px;
}

/* ===== PRICING ===== */
.pricing {
    padding-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}
.pricingTile {
    flex: 1 1 200px;
    max-width: 250px;
    border: 1px solid rgb(91, 29, 39);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background 0.2s;
}
.pricingTile:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
}
.pricingTile h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(218, 25, 56);
}
.pricingTile p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 8px;
}
.pricingTile .price {
    display: block;
    font-size: 20px;
    font-weight: 800;
    margin-top: 5px;
    color: rgb(60, 60, 255);
}

/* ===== FOOTER ===== */
footer{
    margin-top: 36px;
    font-size: 13px;
    padding: 18px;
    background: transparent;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgb(91, 29, 39);
}

.dashboard {
    margin: 0;
}

.dashboardBtn {
    background-color: transparent;
    border: none;
    color: white;
    border: 1px solid #5B1D27;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.314);
    transition: .2s;
}

.dashboardBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    
}

/* ======================= */
/* RESPONSYWNOŚĆ */
/* ======================= */
@media (max-width: 900px) {
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.8);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 15px 0;
        gap: 15px;
        text-align: center;
    }
    nav.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    section {
        width: 95%;
        padding: 30px 0;
        min-height: auto;
    }

    section#about-us {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-us {
        width: 100% !important;
    }

    .intro h1 {
        font-size: 22px;
        text-align: center;
        line-height: 1.3em;
    }
    .intro p {
        font-size: 15px;
        text-align: center;
    }

    .pricing {
        flex-direction: column;
        align-items: center;
    }
    .pricingTile {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    header .title {
        font-size: 16px;
    }
    .logo {
        height: 35px;
    }
    .intro h1 {
        font-size: 18px;
    }
    .intro p {
        font-size: 14px;
    }
    .pricingTile h5 {
        font-size: 16px;
    }
    .pricingTile .price {
        font-size: 18px;
    }
    footer {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}
