:root {
    --bg-color1: #0a192f;
    --bg-color2: #112240;
    --bg-color3: #1a365d;
    --text-color: #64ffda;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

body {
    background: linear-gradient(-45deg, var(--bg-color1), var(--bg-color2), var(--bg-color3));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-family: var(--font-mono);
    color: #e0e0e0;
    line-height: 1.6;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.geek-header {
    padding: 2rem;
    border-bottom: 1px solid var(--text-color);
}

.terminal-prompt {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.prompt-sign {
    color: var(--text-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.typing-text {
    animation: typing 3.5s steps(40, end);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

#main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 4px;
}

.post-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.post-item:hover {
    border-color: var(--text-color);
    transform: translateY(-2px);
}

#sideBar {
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 1rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 8px var(--text-color);
}

#comment_textarea {
  background-color: unset !important;
}

#commentform_title {
  background-image: none !important;
  padding-top: 0 !important;
}

#commentform_title a {
  display: none !important;
}

#comment_form_container {
    background: rgba(10, 25, 47, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

#commentform_title {
    border-bottom: 1px solid var(--text-color);
    padding: 10px 0;
    color: #64ffda;
    font-family: 'JetBrains Mono', monospace;
}

#tbCommentBody {
    background: rgba(16, 32, 61, 0.7);
    border: 1px solid rgba(100, 255, 218, 0.2);
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    padding: 15px;
    width: 100%;
    min-height: 120px;
    transition: all 0.3s ease;
}

#tbCommentBody:focus {
    border-color: #64ffda;
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
    outline: none;
}

.comment_btn {
    background: transparent;
    border: 1px solid #64ffda;
    color: #64ffda;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment_btn:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.commentbox_tab {
    color: #10ffda;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.commentbox_tab.active {
    border-bottom: 2px solid #64ffda;
}

.comment_icon {
    fill: #64ffda;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.comment_icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.comment_svg {
    width: 20px;
    height: 20px;
}

.comment_svg_stroke {
    stroke: #64ffda;
}

#blogTitle {
  display: none;
}

#navList {
  display: flex;
  gap: 12px;
}

#navList li {
  list-style: none;
}

.blogStats {
  margin-left: 40px;
}