:root {
    --bg-color: #050508;
    --text-color: #e0e0e0;
    --accent-cyan: #00f2ff;
    --accent-purple: #bc13fe;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--accent-purple);
    text-shadow: 0 0 8px rgba(188, 19, 254, 0.6);
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hero {
    text-align: center;
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: var(--text-color);
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(12px, 9999px, 32px, 0); }
    5% { clip: rect(84px, 9999px, 95px, 0); }
    10% { clip: rect(15px, 9999px, 63px, 0); }
    15% { clip: rect(2px, 9999px, 11px, 0); }
    20% { clip: rect(54px, 9999px, 66px, 0); }
    100% { clip: rect(89px, 9999px, 13px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 99px, 0); }
    20% { clip: rect(22px, 9999px, 44px, 0); }
    40% { clip: rect(8px, 9999px, 26px, 0); }
    60% { clip: rect(98px, 9999px, 12px, 0); }
    80% { clip: rect(2px, 9999px, 5px, 0); }
    100% { clip: rect(35px, 9999px, 64px, 0); }
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.terminal-window {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    text-align: left;
    overflow: hidden;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-body p {
    margin-bottom: 8px;
}

.blink {
    animation: blink 1s infinite;
    color: var(--accent-cyan);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Terminal Log Styles */
.terminal-log {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
}

.terminal-log li {
    margin-bottom: 12px;
    color: var(--accent-cyan);
    opacity: 0.9;
    padding-left: 12px;
    border-left: 2px solid var(--accent-purple);
    transition: all 0.3s ease;
}

.terminal-log li:hover {
    color: var(--accent-purple);
    border-left-color: var(--accent-cyan);
    padding-left: 18px;
    text-shadow: 0 0 8px rgba(188, 19, 254, 0.4);
}

footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #666;
}

/* Journal Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.3);
}

.journal-entries {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.entry {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
    opacity: 0.5;
}

.entry:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.1);
    border-color: var(--accent-cyan);
}

.entry .date {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.entry h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.entry p {
    color: #bbb;
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}


/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.2);
    border-color: var(--accent-cyan);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.gallery-item .caption {
    padding: 1.5rem;
}

.gallery-item h3 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-item p {
    color: #bbb;
    font-size: 0.9rem;
}


/* Covenant Styles */
#covenant {
    margin: 4rem 0;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

#covenant h2 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.covenant-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.covenant-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-purple);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.covenant-list li:hover {
    transform: translateX(5px);
    border-left-color: var(--accent-cyan);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.1);
}

.covenant-list strong {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* End of File */
