@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --background-color: #0d0d0d;
    --text-color: #fff;
    --dashboard-color: #d8d8db;
    --dashboard-background: #060606;
    --dash-settings: #040404;
    --box-shadow-color: #2e2e2e4d;
    --linear-gradient-color: linear-gradient(45deg, #e74683, #9b59b6);
    --counter-gradient-color: linear-gradient(to right, #e74683, #9b59b6);
    --progress-bg-color: #1c1d202d;
    --progress-shadow-color: #3c3c3c1f;
    --stats-section-bg: rgba(255, 255, 255, 0.05);
    --stat-bg-color: #ffffff0d;
    --achievement-bg-color: #ffffff0d;
    --achievement-border-color: #ffffff19;
    --achievement-unlocked-border: #00acd2;
    --pink-color: #ff7ab4;
    --toast-bg-color: #0d0d0d;
    --quote-color: #e74683;
    --input-border-color: #737374;
    --input-background: #0a0a0a;
    --dev-tag-color: #6e6e6eb9;
    --social-link-color: #ffffff;
}

.light-theme {
    --background-color: #ffffff;
    --text-color: #000;
    --dashboard-color: #333;
    --dashboard-background: #f4f4f4;
    --dash-settings: #dbdde0;
    --box-shadow-color: #aaa;
    --linear-gradient-color: linear-gradient(45deg, #ff7a85, #c56dd5);
    --counter-gradient-color: linear-gradient(to right, #ff7a85, #c56dd5);
    --progress-bg-color: #e1e1e1;
    --progress-shadow-color: #aaa;
    --stats-section-bg: rgba(0, 0, 0, 0.05);
    --stat-bg-color: #f1f1f1;
    --achievement-bg-color: #f1f1f1;
    --achievement-border-color: #00000019;
    --achievement-unlocked-border: #00acd2;
    --pink-color: #e74683;
    --toast-bg-color: #d7d7d7f3;
    --quote-color: #ff7a85;
    --input-border-color: #aaa;
    --input-background: #f1f1f1;
    --dev-tag-color: #6e6e6eb9;
    --social-link-color: #000;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    margin: 0;
    font-family: "Manrope", sans-serif;
    -webkit-user-select: none;
    user-select: none;
}
nav * {
    color: var(--text-color) !important;
}
.main {
    width: 100%;
    height: 70%;
    padding: 3rem 0.5rem;
}
.content {
    margin: auto;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
}

.content h1 {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.content p {
    color: #ccc;
}
.gradient-text {
    background: var(--linear-gradient-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.grad-1 {
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
}
.text-grad-1 {
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
#last-word {
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    white-space: nowrap;
}

.decode-btn {
    font-size: 1.5em;
    color: #7873f5;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: 0.2s;
}
.decode-btn:hover {
    color: #ff6ec4;
    transition: 0.2s;
}

#animated-text {
    font-family: monospace;
    white-space: pre;
    display: inline-block;
}

.flicker {
    animation: flicker 0.1s infinite;
}
#click-prompt {
    animation: moveAndPulse 2s infinite;
}

@keyframes moveAndPulse {
    0% {
        transform: translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 3rem;
    }

    .contentx p {
        font-size: 1.2rem;
    }
}

.tile-link {
    color: #ccc;
    border: solid 0.5px #292929;
    background: #1d1d1d;
    transition: 0.2s;
}
.tile-link:hover {
    color: #ff6ec5d9;
    border: solid 0.5px #7773f5bb;
    background: #1d1d1d;
    transition: 0.1s;
    transform: scale(1.025);
    z-index: 10;
}

.in-dev {
    color: #ffffff4a !important;
    border: solid 0.5px #e3e4e52e !important;
}

.in-dev:hover {
    transform: scale(1) !important;
    background: #1d1d1d !important;
}


.terminal {
    background-color: #060606;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 800px;
    /* color: var(--pink-color); */
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.terminal-title {
    color: #fff;
}

.terminal-buttons .button {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 5px;
}

.terminal-buttons .close {
    background-color: #ff5f56;
}

.terminal-buttons .minimize {
    background-color: #ffbd2e;
}

.terminal-buttons .maximize {
    background-color: #27c93f;
}

.terminal-body {
    padding: 10px;
    overflow-y: auto;
    max-height: 400px;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

footer {
    font-size: 0.9rem;
    color: var(--dev-tag-color);
    max-width: 1200px;
    /* background: var(--dashboard-background); */
}