@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

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

body {
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    background: #000000;
    min-height: 100vh;
    padding: 20px;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 1px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 1px);
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.06;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 1px, transparent 1px, transparent 2px);
    animation: noise 0.15s infinite;
}

@keyframes noise {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, -1%); }
    60% { transform: translate(1%, 1%); }
    70% { transform: translate(-1%, 1%); }
    80% { transform: translate(1%, -1%); }
    90% { transform: translate(-1%, -1%); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    z-index: -1;
}

.glitch {
    font-size: 5em;
    font-weight: bold;
    position: relative;
    color: #ffffff;
    text-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #ffffff;
    margin-bottom: 10px;
}


.subtitle {
    font-size: 0.9em;
    opacity: 0.7;
    letter-spacing: 2px;
    color: #cccccc;
}

.main-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    background: #0a0a0a;
    border: 2px solid #ffffff;
    padding: 25px;
    box-shadow: 
        0 0 10px #ffffff,
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px);
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #ffffff;
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.controls-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info and Leaderboard Block */
.info-leaderboard-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
}

/* Leaderboard Panel */
.leaderboard-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #0a0a0a;
    border: 2px solid #ffffff;
    padding: 20px;
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.leaderboard-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.5;
}

.leaderboard-panel h2 {
    font-size: 1.2em;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 3px #ffffff;
    position: relative;
    z-index: 1;
}

.leaderboard-list {
    overflow-y: auto;
    position: relative;
    z-index: 1;
    max-height: calc(100vh - 300px);
}

.leaderboard-list::-webkit-scrollbar {
    width: 8px;
}

.leaderboard-list::-webkit-scrollbar-track {
    background: #000000;
    border: 1px solid #ffffff;
}

.leaderboard-list::-webkit-scrollbar-thumb {
    background: #ffffff;
    border: 1px solid #000000;
}

.leaderboard-empty {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-rank {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    min-width: 30px;
}

.leaderboard-name {
    flex: 1;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.leaderboard-time {
    color: #ffffff;
    font-weight: bold;
    margin-left: 10px;
}

.controls-panel h2 {
    font-size: 1.2em;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 3px #ffffff;
    position: relative;
}

.controls-panel h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    font-weight: normal;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-shadow: 0 0 3px #ffffff;
    position: relative;
}

.control-group label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 2px);
    pointer-events: none;
    opacity: 0.5;
}

input[type="range"] {
    width: 100%;
    height: 4px;
    border-radius: 0;
    background: #1a1a1a;
    outline: none;
    -webkit-appearance: none;
    border: 1px solid #ffffff;
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid #000000;
    box-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ffffff;
}

input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 
        0 0 10px #ffffff,
        0 0 20px #ffffff;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    border: 1px solid #000000;
    box-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ffffff;
}

input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 
        0 0 10px #ffffff,
        0 0 20px #ffffff;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0 0 3px #ffffff;
}

/* Dim controls in game mode */
body.game-mode-active .controls-panel .control-group,
body.game-mode-active .controls-panel .button-group .btn:not(#becomeAtomBtn),
body.game-mode-active .controls-panel .stats {
    opacity: 0.5;
    pointer-events: none;
}

body.game-mode-active .controls-panel input[type="range"],
body.game-mode-active .controls-panel input[type="checkbox"] {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.btn {
    padding: 12px 24px;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    background: #000000;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.6;
}

.btn:hover {
    background: #ffffff;
    color: #000000;
    text-shadow: none;
    box-shadow: 
        0 0 20px #ffffff,
        0 0 30px #ffffff,
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    border-color: #ffffff;
    box-shadow: 
        0 0 10px #ffffff,
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    box-shadow: 
        0 0 30px #ffffff,
        0 0 40px #ffffff,
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border-color: #888888;
    color: #cccccc;
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.stats {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.5;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.stat-label {
    font-weight: normal;
    color: #ffffff;
    text-shadow: 0 0 3px #ffffff;
}

.stat-item span:last-child {
    color: #ffffff;
    font-weight: bold;
    text-shadow: 0 0 5px #ffffff;
}

.canvas-container {
    position: relative;
    border: 2px solid #ffffff;
    overflow: hidden;
    background: #000000;
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.2);
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 1px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 1px);
}

#canvas {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

#noiseCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* Timer Overlay */
.timer-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease-out;
    pointer-events: none;
}

.timer-overlay.visible {
    opacity: 1;
    transform: translateX(0);
}

.timer-box {
    background: #0a0a0a;
    border: 2px solid #ffffff;
    padding: 15px 25px;
    width: 180px;
    height: 80px;
    box-shadow: 
        0 0 10px #ffffff,
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.5;
}

.timer-label {
    font-size: 0.8em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.timer-value {
    font-size: 1.8em;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Game Over Window (large, centered) */
.game-over-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 30;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
}

.game-over-window.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.game-over-box {
    background: #0a0a0a;
    border: 2px solid #ffffff;
    padding: 40px 50px;
    width: 450px;
    min-height: 400px;
    box-shadow: 
        0 0 20px #ffffff,
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.game-over-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.5;
}

.game-over-title {
    font-size: 2.5em;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Leaderboard in Game Over window */
.game-over-leaderboard {
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 0.75em;
    color: #ffffff;
}

.game-over-leaderboard .leaderboard-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
}

.game-over-leaderboard .leaderboard-item:last-child {
    border-bottom: none;
}

.game-over-leaderboard .leaderboard-name {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-over-leaderboard .leaderboard-time {
    color: #ffffff;
    font-weight: bold;
}

/* Name input form */
.name-input-form {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.player-name-input {
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    background: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.player-name-input:focus {
    outline: none;
    box-shadow: 
        0 0 10px #ffffff,
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.player-name-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
}

.save-score-btn {
    padding: 8px 20px;
    font-size: 0.8em;
}

.survival-time-display {
    font-size: 1.3em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.game-over-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.game-over-buttons .game-btn {
    padding: 12px 30px;
    background: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    max-width: 280px;
    margin: 0;
}

.game-over-buttons .game-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Collision Impulse Effect */
.collision-impulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: all 0.3s ease-out;
}

.collision-impulse.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: impulsePulse 0.6s ease-out;
}

.impulse-text {
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    font-size: 4em;
    font-weight: bold;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    animation: impulseShake 0.5s ease-out;
}

.impulse-subtext {
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    font-size: 1.5em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes impulsePulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes impulseShake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .controls-panel {
        order: 2;
    }

    .canvas-container {
        order: 1;
    }
    
    .info-leaderboard-block {
        grid-template-columns: 1fr;
    }

    .glitch {
        font-size: 3.5em;
    }
}

.seo-content {
    margin-top: 0;
    padding: 30px;
    background: #0a0a0a;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Share Tech Mono', 'Courier New', Courier, monospace;
    line-height: 1.6;
    box-shadow: 
        0 0 10px #ffffff,
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.seo-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 1px);
    pointer-events: none;
    opacity: 0.5;
}

.seo-content article {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.seo-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
}

.seo-content h3 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-content p {
    margin-bottom: 15px;
    font-size: 0.95em;
    color: #cccccc;
    text-align: justify;
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #cccccc;
}

.seo-content li {
    margin-bottom: 10px;
    font-size: 0.95em;
    line-height: 1.5;
}

.seo-content strong {
    color: #ffffff;
    font-weight: normal;
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2.5em;
    }

    .main-content {
        padding: 15px;
    }
    
    .info-leaderboard-block {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .seo-content {
        padding: 20px;
    }

    .seo-content h2 {
        font-size: 1.5em;
    }

    .seo-content h3 {
        font-size: 1.1em;
    }

    .seo-content p,
    .seo-content li {
        font-size: 0.9em;
    }

    .timer-overlay {
        top: 10px;
        right: 10px;
    }

    .timer-box {
        padding: 10px 15px;
    }

    .timer-value {
        font-size: 1.4em;
    }

    .impulse-text {
        font-size: 2.5em;
    }

    .impulse-subtext {
        font-size: 1.2em;
    }
    
    .site-footer {
        padding: 15px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        margin: 5px 10px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

/* Site Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #333;
    padding: 25px 20px;
    margin-top: 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: #555;
    font-size: 0.8em;
    margin-top: 10px;
}

/* Cookie Consent Banner */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #333;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.cookie-btn.accept:hover {
    background: #ccc;
}

.cookie-btn.reject {
    color: #888;
}

.cookie-btn.reject:hover {
    color: #fff;
    border-color: #fff;
}

.cookie-link {
    color: #888;
    font-size: 0.85em;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #fff;
}
