@keyframes scrollTexture {
    0% { background-position: 0 0; }
    100% { background-position: 1260px 630px; }
}

@keyframes powerOn {
    0% {
        transform: scaleY(0.005) scaleX(0);
        background: white;
        filter: brightness(3);
        opacity: 0;
    }
    40% {
        transform: scaleY(0.005) scaleX(2.75);
        background: white;
        filter: brightness(3);
        opacity: 1;
    }
    100% {
        transform: scaleY(1) scaleX(1);
        background: rgba(0, 0, 0, 0.7);
        filter: brightness(1);
        opacity: 1;
    }
}

:root {
    --neon-white: #ffffff;
    --cyber-purple: #4800ff;
    --crt-bg: #000000;

	  image-rendering: pixelated;
    cursor:url("assets/img/cursor.png") 20 8, auto;
}

@media (min-width: 768px) {
    :root { font-size: 16px; }
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--crt-bg);
    font-family: "Courier New", Courier, monospace;
    color: var(--neon-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.background {
    position: fixed;
    top: -50%;
    width: 200%;
    height: 200%;
    background-image: url("assets/img/nebula.png");
    background-size: cover;
    background-attachment: fixed;
    z-index: -2;
    opacity: 1;
}

.interface-container {
    margin: 40px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--neon-white);
    position: relative;
    animation: powerOn 0.75s cubic-bezier(0.23, 1, 0.32, 1) both;
    padding-top: 30px;
    width: 90%;
    max-width: 700px;
    margin: 20px auto;
    padding: 15px;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
}

.status-badge {
    position: absolute;
    top: -16px;
    right: -96px;
    background: black;
    color: var(--neon-white);
    padding: 5px 20px;
    font-weight: bold;
    transform: rotate(3deg);
    border: 2px solid white;
}

.panel {
    border-left: 4px solid var(--neon-white);
    padding-left: 15px;
    margin-bottom: 30px;
}

.panel-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.panel-text {
    flex: 1;
}

.panel-art img {
    width: auto;
    height: auto;
    padding: 5px;
}

@media (max-width: 600px) {
    .panel-body {
        flex-direction: column;
        text-align: center;
    }
}

.creation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

@media (min-width: 480px) {
    .creation-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.creation-card {
    border: 1px solid var(--neon-white);
    padding: 16px;
    font-size: 0.9rem;
}

.terminal-nav {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid var(--neon-white);
    padding: 5px 0;
    margin-top: 10px;
    font-size: 1.5rem;
}

.terminal-nav a {
    text-decoration: none;
    padding: 2px 8px;
}

.terminal-nav a::before {
    content: "[ ";
}

.terminal-nav a::after {
    content: " ]";
}

.social-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed var(--neon-white);
}

.social-item {
    text-decoration: none;
    font-weight: bold;
}

a img.hover {
	display: none;

}

a img.regular {
	display: inherit;
	width: 64px;
	height: 64px;
}

a:hover img.hover {
	display: inherit;
	width: 64px;
	height: 64px;
}

a:hover img.regular {
	display: none;
	width: 64px;
	height: 64px;
}

.footer-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    margin-top: 10px;
    text-transform: uppercase;
}

footer {
    text-align: center;
    font-size: 0.7rem;
    margin-top: 40px;
    border-top: 1px solid var(--neon-white);
    padding-top: 10px;
}

.media-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.divider {
    border-top: 1px solid var(--neon-white);
    padding-top: 10px;
}

.divider-card {
    border-bottom: 1px solid var(--neon-white);
    padding-bottom: 4px;
    padding-top: 4px;
}

:link {
	cursor:url("assets/img/cursor_click.png") 20 8, auto;
}

a:link {
    color: white;
}

  a:visited {
    color: white;
}

  a:hover {
    color: #ff9525;
}

  a:active {
    color: #ff9525;
}

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

.erratas a {
    text-decoration: none;
}