* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #020c0b;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}


/* ==========================================
   BACKGROUND
========================================== */

.background-video {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -10;

    pointer-events: none;

    background: #020c0b;
}

.video-overlay {
    position: fixed;
    inset: 0;

    z-index: -9;

    background:
        linear-gradient(
            180deg,
            rgba(2, 12, 11, 0.48),
            rgba(2, 12, 11, 0.72)
        );

    pointer-events: none;
}

.dark-overlay {
    position: fixed;
    inset: 0;

    z-index: -8;

    background:
        radial-gradient(
            circle at center,
            transparent 0%,
            rgba(0, 0, 0, 0.28) 55%,
            rgba(0, 0, 0, 0.65) 100%
        );

    pointer-events: none;
}


/* ==========================================
   ENTER SCREEN
========================================== */

.enter-screen {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(1, 8, 7, 0.88);

    backdrop-filter: blur(20px);

    z-index: 10000;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.enter-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.enter-content {
    text-align: center;
}

.enter-logo {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -4px;
}

.enter-subtitle {
    margin-top: 8px;

    color: #7f8b89;

    font-size: 11px;
    letter-spacing: 4px;
}

#enterButton {
    margin-top: 35px;

    padding: 14px 30px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;

    background: rgba(255,255,255,0.06);

    color: #fff;

    cursor: pointer;

    font-size: 12px;
    letter-spacing: 2px;

    transition: 0.25s ease;
}

#enterButton:hover {
    background: rgba(255,255,255,0.12);

    transform: translateY(-2px);
}


/* ==========================================
   NAVBAR
========================================== */

.navbar {
    position: fixed;

    top: 17px;
    left: 50%;

    transform: translateX(-50%);

    width: min(845px, calc(100% - 30px));

    height: 58px;

    display: flex;
    align-items: center;

    padding: 0 10px 0 20px;

    border: 1px solid rgba(120, 190, 180, 0.14);
    border-radius: 18px;

    background: rgba(4, 20, 18, 0.62);

    backdrop-filter: blur(18px);

    z-index: 1000;

    box-shadow:
        0 10px 50px rgba(0,0,0,0.15);
}

.nav-logo {
    font-size: 19px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 5px;

    margin: auto;
}

.nav-button {
    border: none;

    background: transparent;

    color: #85918f;

    padding: 10px 15px;

    border-radius: 9px;

    cursor: pointer;

    font-size: 12px;

    transition: 0.2s ease;
}

.nav-button:hover {
    color: #fff;
}

.nav-button.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.discord-top {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 36px;

    padding: 0 18px;

    border-radius: 10px;

    background: #5865f2;

    color: white;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: 0.2s ease;
}

.discord-top:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(88,101,242,0.35);
}


/* ==========================================
   MAIN
========================================== */

main {
    min-height: 100vh;
    padding-top: 100px;
}

.page {
    display: none;

    min-height: calc(100vh - 100px);

    padding: 100px 20px 100px;

    animation: pageIn 0.35s ease;
}

.page.active-page {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================
   PROFILE
========================================== */

.profile-card {
    position: relative;

    width: 563px;

    min-height: 373px;

    padding: 34px 30px 24px;

    border-radius: 20px;

    border: 1px solid rgba(130, 190, 180, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(17, 44, 40, 0.72),
            rgba(4, 25, 22, 0.72)
        );

    backdrop-filter: blur(18px);

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);
}

.avatar-wrapper {
    position: relative;

    width: 100px;
    height: 100px;

    margin: 0 auto 15px;
}

.avatar {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,0.2);

    filter: grayscale(100%);
}

.online-dot {
    position: absolute;

    right: 2px;
    bottom: 4px;

    width: 14px;
    height: 14px;

    background: #53e38b;

    border-radius: 50%;

    border: 2px solid #102923;

    box-shadow:
        0 0 16px rgba(83,227,139,0.7);
}

.profile-card h1 {
    font-size: 35px;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.location {
    margin-top: 8px;

    color: #899694;

    font-size: 12px;
}

.location span {
    margin-right: 8px;
}

.profile-description {
    margin-top: 20px;

    color: #a7b0ae;

    font-size: 12px;

    line-height: 1.8;
}


/* ==========================================
   SOCIAL ICONS
========================================== */

.social-icons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 12px;

    margin-top: 22px;
}

.social-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    cursor: pointer;

    text-decoration: none;

    font-size: 17px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.discord-icon {
    background: #5865f2;

    color: #fff;

    box-shadow:
        0 0 18px rgba(88,101,242,0.35);
}

.crypto-icon {
    background: #f1f1f1;

    color: #111;
}

.litecoin-symbol {
    font-size: 20px;
    font-weight: 700;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.07);
}

.discord-icon:hover {
    box-shadow:
        0 0 28px rgba(88,101,242,0.65);
}

.crypto-icon:hover {
    box-shadow:
        0 0 25px rgba(255,255,255,0.25);
}

.social-icon:active {
    transform: scale(0.94);
}


/* ==========================================
   VIEWS
========================================== */

.views {
    position: absolute;

    bottom: 16px;
    left: 20px;

    display: flex;
    gap: 8px;

    color: #9ba6a4;

    font-size: 11px;
}


/* ==========================================
   SECTION
========================================== */

.section-container {
    width: min(1000px, 100%);
    margin: auto;
}

.section-header {
    text-align: center;

    margin-bottom: 30px;
}

.section-header > span {
    color: #5865f2;

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 700;
}

.section-header h2 {
    margin-top: 7px;

    font-size: 36px;
}

.section-header p {
    margin-top: 8px;

    color: #84918f;

    font-size: 13px;
}


/* ==========================================
   PORTFOLIO
========================================== */

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.portfolio-card {
    overflow: hidden;

    border: 1px solid rgba(120,190,180,0.13);

    border-radius: 16px;

    background: rgba(5,25,22,0.65);

    backdrop-filter: blur(14px);

    transition: 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);

    border-color: rgba(120,190,180,0.25);
}

.portfolio-card > img {
    width: 100%;
    height: 190px;

    display: block;

    object-fit: cover;
}

.portfolio-content {
    padding: 20px;
}

.category,
.price-category {
    color: #647572;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.portfolio-content h3 {
    margin-top: 8px;

    font-size: 18px;
}

.portfolio-content p {
    margin-top: 8px;

    color: #899693;

    font-size: 12px;

    line-height: 1.6;
}

.portfolio-button {
    display: flex;

    justify-content: space-between;

    margin-top: 18px;

    padding: 11px 14px;

    border-radius: 9px;

    background: rgba(255,255,255,0.055);

    color: #fff;

    text-decoration: none;

    font-size: 11px;

    transition: 0.2s ease;
}

.portfolio-button:hover {
    background: rgba(88,101,242,0.18);
}


/* ==========================================
   PRICING
========================================== */

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.price-card {
    position: relative;

    padding: 25px;

    border: 1px solid rgba(120,190,180,0.13);

    border-radius: 16px;

    background: rgba(5,25,22,0.68);

    backdrop-filter: blur(14px);
}

.price-card.featured {
    border-color: rgba(88,101,242,0.5);

    box-shadow:
        0 0 30px rgba(88,101,242,0.08);
}

.popular {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 6px 9px;

    border-radius: 7px;

    background: #5865f2;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}

.price-card h3 {
    margin-top: 8px;

    font-size: 19px;
}

.price {
    margin-top: 12px;

    font-size: 28px;

    font-weight: 800;
}

.price-card ul {
    list-style: none;

    margin-top: 22px;
}

.price-card li {
    display: flex;
    gap: 9px;

    margin-top: 11px;

    color: #9aa6a4;

    font-size: 11px;
}

.price-card li i {
    color: #53e38b;
}

.buy-button {
    display: block;

    margin-top: 25px;

    padding: 12px;

    border-radius: 9px;

    background: rgba(88,101,242,0.16);

    color: #fff;

    text-align: center;

    text-decoration: none;

    font-size: 11px;

    transition: 0.2s ease;
}

.buy-button:hover {
    background: #5865f2;
}


/* ==========================================
   MUSIC PLAYER
========================================== */

.music-player {
    position: fixed;

    right: 16px;
    bottom: 16px;

    min-width: 154px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px;

    border: 1px solid rgba(120,190,180,0.13);

    border-radius: 16px;

    background: rgba(4,20,18,0.7);

    backdrop-filter: blur(18px);

    z-index: 1000;
}

.music-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    color: #fff;
}

.music-info {
    display: flex;
    flex-direction: column;

    min-width: 70px;
}

.music-info strong {
    font-size: 10px;
}

.music-info span {
    margin-top: 3px;

    color: #6f7c79;

    font-size: 8px;
}

.music-button {
    width: 28px;
    height: 28px;

    border: none;

    background: transparent;

    color: #fff;

    cursor: pointer;
}


/* ==========================================
   TOAST
========================================== */

#copyToast {
    position: fixed;

    left: 50%;
    bottom: 35px;

    transform:
        translateX(-50%)
        translateY(20px);

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 12px;

    background: rgba(5,18,16,0.94);

    backdrop-filter: blur(15px);

    color: #fff;

    font-size: 12px;

    opacity: 0;

    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

#copyToast.show {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .navbar {
        width: calc(100% - 20px);

        padding-left: 14px;
        padding-right: 7px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .nav-button {
        padding: 9px 8px;

        font-size: 10px;
    }

    .discord-top {
        padding: 0 11px;

        font-size: 10px;
    }

    .profile-card {
        width: 100%;

        min-height: 360px;

        padding: 30px 20px;
    }

    .portfolio-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .music-player {
        right: 10px;
        bottom: 10px;
    }

}

@media (max-width: 430px) {

    .nav-links {
        gap: 0;
    }

    .nav-button {
        padding-left: 6px;
        padding-right: 6px;
    }

    .discord-top {
        padding: 0 9px;
    }

    .enter-logo {
        font-size: 52px;
    }

}