/* Cybernetic Color Scheme */
:root {
    --cyber-blue: #8fbbea;
    --cyber-dark: #344943;
    --cyber-border: #bbea8f;
    --cyber-text: #e0e0ff;
    --cyber-pink: #ea8fbb;
    --cyber-bg: #444978;
}

/* Base Styles */
body {
    background-color: #b685cc;
    color: white;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h2 {
text-transform: uppercase;
}

h3 {
color: #493659;
text-transform: uppercase; 
}

h4 {
text-decoration: underline;
font-weight: bold;
}

h6 {
font-style: oblique;
font-size: 1rem;
letter-spacing: 0.2em;
transform: scaleY(1.5);
margin-left: 2rem; 
}

li {
list-style: "🌼";
}

a {
color: #ef6d04;
text-transform: uppercase; 
font-weight: bold; 
}

details {
border-radius: 20px; 
}

details:hover

#score {
font-weight: bold;
font-size: 3rem;
color: #bbea8f; 
}

.medals {
  display: flex; 
	width: 100%;
  gap: 2rem; 
}

.firstmedal::before {
  content: "\01F34A";
  font-size: 3rem;
	display: block;
}

.secondmedal::before {
  content: "🍋";
  font-size: 3rem; 
  display: block;  
}

.thirdmedal::before {
  content: "🍵";
  font-size: 3rem; 
  display: block;  
}

.fourthmedal::before {
  content: "☕";
  font-size: 3rem; 
  display: block; 
}

/* Two Column Layout */
.cyber-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cyber-column {
    flex: 1;
    min-width: 300px;
}

nav , details {
display: flex; 
flex-direction: row;
flex-wrap: no-wrap;
gap: 2rem; 
}

details {
width: 15vw; 
border: solid white 1px; 
padding: 1rem; 
 }

details:hover {
border: solid #ef6d04 1px;
}

/* Cyber Panel Styling */
.cyber-panel {
    background-color: var(--cyber-bg);
    border: 1px solid var(--cyber-blue);
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    position: relative;
}

.cyber-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
    animation: scanline 3s linear infinite;
}

.cyber-title {
    color: var(--cyber-blue);
    text-shadow: 0 0 5px var(--cyber-blue);
    border-bottom: 1px dashed var(--cyber-border);
    padding-bottom: 10px;
    margin-top: 0;
    font-family: 'Tourney', sans-serif;
}

/* Mood Tracker */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 15px 0;
}

.mood-option {
    background: transparent;
    border: 1px solid var(--cyber-blue);
    color: var(--cyber-text);
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mood-option:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}

.mood-option span {
    font-size: 0.8rem;
    margin-top: 5px;
}

.current-mood {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed var(--cyber-border);
}

/* Progress Bars */
.metric {
    margin: 15px 0;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: rgba(0, 102, 255, 0.2);
    margin-top: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-pink));
    animation: progress-pulse 2s infinite alternate;
}

.judikael {
    background-color: var(--cyber-bg);
    border: 1px solid var(--cyber-blue);
    padding: 20px;
    margin-bottom: 20px;
}

.judikael h3 {
color: #ef6d04;
}

fieldset {
    border: 1px solid var(--cyber-blue);
    margin: 15px 0;
    padding: 10px;
}

legend {
    color: var(--cyber-blue);
    padding: 0 10px;
}

.codestatus {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px dashed var(--cyber-blue);
    padding: 15px;
    margin: 15px 0;
    font-family: 'Share Tech Mono', monospace;
}

.stickers {
margin-top: 5rem; 
text-align: right;
}

#miku {
max-width: 20rem;}

.links a {
color: #ffbad3; 
}

.links a:hover {
color: #493659; 
}

/* Animations */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes progress-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyber-container {
        flex-direction: column;
    }
    
    .cyber-column {
        width: 100%;
    }
}