* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-family: 'Courier New', monospace;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.top-navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 2em;
    display: flex;
    gap: 2em;
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar-links{
    display: flex;
    gap: 2em;
}

.top-navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85em;
    letter-spacing: 0.1em;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.top-navbar a:hover {
    color: #4ade80;
    border-bottom-color: #4ade80;
}

.container {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 3em 2em;
    padding-top: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.header {
    text-align: center;
    margin-bottom: 3em;
}

.header h1 {
    font-size: 4em;
    color: #ffffff;
    margin-bottom: 0.2em;
    letter-spacing: 0.2em;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.header .subtitle {
    color: #4ade80;
    font-size: 1.2em;
    opacity: 0.8;
    letter-spacing: 0.3em;
}

.user-info {
    color: #ffffff;
    font-size: 1.2em;
    margin-top: 1em;
}

.user-info strong {
    color: #ffffff;
}

.badge {
    display: inline-block;
    padding: 0.3em 0.8em;
    margin-left: 1em;
    border: 1px solid #4ade80;
    color: #4ade80;
    font-size: 0.8em;
}

.content {
    width: 100%;
    max-width: 1000px;
    padding: 0 1em;
}

.section {
    margin-bottom: 3em;
    padding: 2.5em 2.5em;
    border: 1px solid #333333;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.content {
    margin-top: 0;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #4ade80;
    opacity: 0.5;
}

.section h2 {
    color: #4ade80;
    margin-bottom: 2em;
    font-size: 1.6em;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #333333;
    padding-bottom: 0.75em;
    display: inline-block;
    width: 100%;
}

.section p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1em;
    opacity: 0.9;
}

.acronym-list {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    margin-bottom: 2em;
    padding-left: 1em;
    border-left: 1px solid #333333;
}

.acronym-item {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    letter-spacing: 0.05em;
}

.acronym-letter {
    color: #000000;
    background: #4ade80;
    font-weight: bold;
    font-size: 1.2em;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1em;
    border-radius: 2px;
}

.acronym-word {
    color: #ffffff;
    text-transform: uppercase;
}

.creator-block {
    margin-top: 2.5em;
    border-top: 1px solid #333333;
    padding-top: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5em;
}

.creator-label {
    color: #888;
    font-size: 0.9em;
    margin-right: 0.5em;
}

.creator-name {
    color: #ffffff;
    font-weight: bold;
}

.nav-grid,
.actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 3em;
}

.nav-card,
.action-card {
    padding: 2.25em 2em;
    border: 1px solid #333333;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.nav-card::after,
.action-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4ade80;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-card:hover::after,
.action-card:hover::after {
    transform: scaleX(1);
}

.nav-card:hover,
.action-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #4ade80;
    transform: translateY(-2px);
}

.nav-card h3,
.action-card h3 {
    color: #ffffff;
    margin-bottom: 0.5em;
    font-size: 1.2em;
    letter-spacing: 0.1em;
}

.nav-card p,
.action-card p {
    color: #888;
    font-size: 0.9em;
}

.status {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.4s forwards;
}

.status-item {
    color: #ffffff;
}

.status-item .label {
    color: #4ade80;
    margin-right: 0.5em;
}

.section a {
    color: #4ade80;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.section a:hover {
    border-bottom-color: #4ade80;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
}

.hero-title {
    font-size: 6em;
    color: #ffffff;
    letter-spacing: 0.3em;
    font-weight: 900;
    margin-bottom: 0.2em;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.hero-stats {
    padding: 0.75em 1.5em;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    display: inline-block;
    margin-bottom: 1.5em;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.2em;
    color: #4ade80;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.8s forwards;
    max-width: 600px;
    margin-bottom: 1em;
}

.hero-creator {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin-top: 1em;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.2s forwards;
    flex-wrap: wrap;
}

.hero-creator .creator-name {
    color: #ffffff;
    font-weight: normal;
    font-size: 1.15em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
    letter-spacing: 0.05em;
}

.hero-creator .creator-name:hover {
    border-bottom-color: #ffffff;
    opacity: 1;
}

.hero-creator a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    padding-bottom: 2px;
    font-size: 1.15em;
    letter-spacing: 0.05em;
}

.hero-creator a:hover {
    border-bottom-color: #ffffff;
    opacity: 1;
}

.hero-creator .separator {
    color: #333;
    margin: 0 5px;
}

.fade-in-content {
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.6s forwards;
}

.content.fade-in-content {
    margin-top: 1em;
    padding-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5em;
    margin: 2.5em 0;
    padding: 1.5em 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.feature-item {
    padding: 1em;
}

.feature-item h4 {
    color: #4ade80;
    font-size: 0.95em;
    letter-spacing: 0.1em;
    margin-bottom: 0.75em;
    font-weight: bold;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0;
}

.section:first-of-type {
    margin-top: 0;
}

.section p.intro {
    margin-bottom: 3em;
    font-size: 1.15em;
    opacity: 0.95;
    line-height: 1.9;
}

.system-details {
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin-top: 2em;
}

.detail-section {
    padding: 1.5em 0;
    border-top: 1px solid #222;
}

.detail-section:first-child {
    border-top: none;
    padding-top: 0;
}

.detail-section h3 {
    color: #4ade80;
    font-size: 1em;
    letter-spacing: 0.15em;
    margin-bottom: 1em;
    font-weight: bold;
}

.detail-section p {
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
    font-size: 0.95em;
    margin-bottom: 0;
}

.separator {
    color: #333;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .top-navbar {
        padding: 1em 1.5em;
        gap: 1.5em;
        flex-direction: column;
        align-items: flex-end;
    }

    .top-navbar a {
        font-size: 0.8em;
    }

    .container {
        padding: 2em 1.5em;
        padding-top: 8em;
    }

    .content {
        padding: 0 0.5em;
    }

    .section {
        padding: 2em 1.5em;
        margin-bottom: 2em;
    }

    .header h1 {
        font-size: 2.5em;
    }

    .nav-grid,
    .actions {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
        margin: 2em 0;
    }

    .status {
        flex-direction: column;
        gap: 0.5em;
        align-items: center;
        margin-top: 1.5em;
    }
    
    .creator-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }

    .hero-creator {
        gap: 0.5em;
        flex-direction: row;
    }
}
