:root {
	--bg-dark: #0a0a0a;
	--bg-darker: #050505;
	--accent-cyan: #00d4d4;
	--accent-magenta: #ff00ff;
	--text-primary: #e0e0e0;
	--text-secondary: #909090;
	--border: #1a1a1a;
}

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

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	z-index: 1000;
	
	font-family: 'Segoe UI', Arial, sans-serif;
	background: var(--bg-dark);
	color: var(--text-primary);
	
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 2px;
	background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

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

nav a:hover {
	color: var(--accent-cyan);
}


/* Cookie */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

#cookie-banner h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

#cookie-banner p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

#cookie-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

#cookie-banner a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cookie-accept {
    background: white;
    color: #667eea;
}

.cookie-accept:hover,
.cookie-accept:active {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-decline:hover,
.cookie-decline:active {
    background: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 768px) {
	
	#cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 15px 15px 0 0;
        padding: 20px;
    }
    
    #cookie-banner h3 {
        font-size: 16px;
    }
    
    #cookie-banner p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        padding: 14px;
        font-size: 15px;
    }
		
	@keyframes slideIn {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes slideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(100%);
            opacity: 0;
        }
    }
	
}
