body {
    background: linear-gradient(93deg, #0f0c40, #330671, #0f0c40, #330671);
    background-size: 400% 400%;
    animation: gradient-animation 10s ease infinite;
    color: #e0e0e0;
    min-height: 100vh;
}

*, *::before, *::after {
    box-sizing: border-box;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}




/* Typography styles */
.lacquer-regular {
  font-family: "Lacquer", system-ui;
  font-weight: 400;
  font-style: normal;
}

.dm-mono-light {
  font-family: "DM Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

h1, h2, h3 {
    font-family: 'Lacquer', serif;
    color: #F0A7FF;
}

h1 { 
    font-size: 2.0rem; 
    line-height: 0.7;
}

h2 { 
    font-size: 1.5rem;
        line-height: 0.7;
}

h3 { 
    font-size: 1.0rem; 
        line-height: 0.7;
}

p {
    font-family: "DM Mono", monospace;
    color: #e0e0e0;
    font-size: 0.8rem;
}

/* Default links (no bullet) */
a {
    font-family: "DM Mono", monospace;
    color: #6ADF5A;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

a:hover {
    color: #FB12C9;
    text-decoration: none;
}


/* Links with bullets - use class "bullet-link" */
a.bullet-link {
    font-family: "DM Mono", monospace;
    color: #6ADF5A;
    text-decoration: none;
    font-size: 0.8rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

a.bullet-link:before {
    content: "•";
    color: #FB12C9;
    font-weight: bold;
    font-size: 1em;
    position: relative;
    right: 5px;
    top: 0;
}

a.bullet-link:hover {
    color: #FB12C9;
    text-decoration: none;
}


/* Button styles using same font as paragraphs */
.button, button {
    font-family: "DM Mono", monospace;
    background: linear-gradient(135deg, #66d9ff, #4dabf7);
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button:hover, button:hover {
    background: linear-gradient(135deg, #4dabf7, #339af0);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.button:active, button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Optional: Secondary button style */
.button-secondary {
    font-family: "DM Mono", monospace;
    background: transparent;
    color: #66d9ff;
    border: 2px solid #66d9ff;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button-secondary:hover {
    background: #66d9ff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 217, 255, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 40%);
    position: relative;
}

/* Header */
.header {
    background: transparent;
    padding: 20px;
    text-align: center;
    margin: 0;
    border: none;
}

.logo {
    font-size: 3rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

/* Main Content Area */
.content-wrapper {
    display: flex;
    gap: 12px;
    min-height: 400px;
}

.column {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 0px 15px 10px;
    border: 2px dotted rgba(255, 255, 255, 0.2);
}

.nav-column {
    flex: 0 0 20%;
}

.main-column {
    flex: 0 0 55%;
}

.fun-column {
    flex: 0 0 25%;
}

/* Navigation Styles */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 10px;
}

.nav-list a {
    display: block;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    transform: translateX(5px);
    text-decoration: none;
}

/* Fun Column Styles */
.fun-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 5px;
    border-left: 4px solid #ff6b6b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .main-column {
        order: 1;
    }

    .fun-column {
        order: 3;
    }

    .nav-column {
        order: 2;
    }

    .nav-column,
    .main-column,
    .fun-column {
        flex: none;
        width: 100%;
    }

    .header {
        padding: 20px;
    }

    .logo {
        font-size: 2rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
}

@media screen and (max-width: 480px) {
    .container {
        width: 100%;
        padding: 5px;
    }

    .column {
        padding: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }
}