/* PREMIUM GAMING HEADER */
.premium-header {
    background: #111;
    border-bottom: 2px solid #00aaff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    width: 95%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-glow {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 12px #00aaff, 0 0 25px #0088cc;
}

/* Navigation */
.navigation a {
    margin-left: 25px;
    text-decoration: none;
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
    transition: 0.25s ease;
}

.navigation a:hover {
    color: #00aaff;
    text-shadow: 0 0 10px #00aaff;
}

.navigation .highlight {
    color: #00aaff;
    font-weight: 700;
}

.user-tag {
    margin-left: 25px;
    opacity: 0.75;
    color: #fff;
    font-size: 14px;
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 120px 5% 100px;
    background: radial-gradient(circle at top, #1d1d1d, #0f0f0f);
}

.hero-section h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.blue-glow {
    color: #00aaff;
    text-shadow: 0 0 20px #00aaff;
}

.hero-subtext {
    font-size: 20px;
    opacity: 0.75;
    margin-bottom: 40px;
}

/* HERO BUTTONS */
.hero-btn {
    background: #00aaff;
    color: #0b0b0b;
    font-size: 18px;
    padding: 14px 30px;
}

.ghost-btn {
    border: 2px solid #00aaff;
    color: #00aaff;
    padding: 14px 30px;
}

.ghost-btn:hover {
    background: #00aaff;
    color: #000;
}

/* Button Basics */
.btn {
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    display: inline-block;
    margin: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    width: 10px;
    height: 30px;
    border-radius: 20px;
    border: 2px solid #00aaff;
    margin: 30px auto 0;
    animation: scrollBounce 1.5s infinite ease-in-out;
}

@keyframes scrollBounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

/* SECTION TITLE BEAUTIFUL */
.section-title {
    margin-top: 50px;
    text-align: center;
    font-size: 30px;
    color: #00aaff;
    font-weight: 800;
    text-shadow: 0 0 12px #00aaff88;
}




/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
}

/* Header */
header {
    background: linear-gradient(135deg, #1f1f1f, #292929);
    border-bottom: 3px solid #00aaff;
    padding-bottom: 15px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #eeeeee;
    font-weight: bold;
    font-size: 14px;
}

.nav a:hover {
    color: #00aaff;
}

.nav-user {
    margin-left: 15px;
    opacity: 0.8;
    font-size: 13px;
}

.header-bottom {
    text-align: center;
    padding: 10px 5% 20px;
}

.header-bottom h1 {
    margin: 0;
    font-size: 28px;
}

.header-bottom p {
    margin-top: 6px;
    opacity: 0.75;
}

/* Main container & Cards */
main {
    width: 90%;
    max-width: 1200px;
    margin: 25px auto 40px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background-color: #1b1b1b;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.18);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
}

.title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00aaff;
}

.description {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.meta {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.category-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background-color: #111;
    border: 1px solid #00aaff55;
    font-size: 11px;
    margin-bottom: 8px;
}

.price {
    font-size: 17px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #00aaff;
    color: black;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0088cc;
}

/* Forms */
form {
    max-width: 600px;
    background-color: #181818;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.15);
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

input, textarea, select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background-color: #101010;
    color: white;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Suchleiste / Filter */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-bar input[type="text"] {
    flex: 1;
}

.filter-bar select {
    width: 200px;
}

/* Fehler / Info */
.error {
    color: #ff5e5e;
    margin-bottom: 10px;
}

.info {
    color: #6ac46a;
    margin-bottom: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 18px;
    margin-top: 30px;
    opacity: 0.6;
    border-top: 1px solid #222;
}




/* Hero Bereich */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #141414, #0f0f0f);
    margin-top: -20px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: white;
}

.hero-title .highlight {
    color: #00aaff;
    text-shadow: 0 0 18px rgba(0, 170, 255, 0.6);
}

.hero-sub {
    opacity: 0.7;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons .btn.big {
    font-size: 18px;
    padding: 14px 28px;
    margin: 5px;
}

.btn.ghost {
    background: transparent;
    color: #00aaff;
    border: 2px solid #00aaff;
}

.btn.ghost:hover {
    background: #00aaff;
    color: black;
}

/* Titel */
.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 25px;
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.3);
}

/* Leerer Zustand */
.empty-text {
    text-align: center;
    opacity: 0.5;
    margin-top: 20px;
}

/* Fancy Card */
.card.fancy {
    border: 1px solid #00aaff33;
    position: relative;
    overflow: hidden;
}

.card.fancy::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(0,170,255,0.1);
    border-radius: 50%;
    filter: blur(20px);
}

.card.fancy:hover::before {
    background: rgba(0,170,255,0.25);
}

/* Animation */
.card.fancy {
    transform: translateY(0px);
    transition: 0.25s ease;
}

.card.fancy:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0,150,255,0.35);
}