:root {
    --primary: #00d2ff;
    --secondary: #3a47d5;
    --dark: #0f0c29;
    --deep-dark: #050510;
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--deep-dark);
    background: radial-gradient(circle at top, #0f0c29 0%, var(--deep-dark) 100%);
    background-attachment: fixed;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    min-height: 100vh;
}

header {
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 210, 255, 0.1);
}

.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); letter-spacing: 2px; }

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    transition: 0.3s;
    font-size: 0.9rem;
}

nav a:hover { color: var(--primary); text-shadow: 0 0 10px var(--primary); }

.container { padding: 120px 10% 50px; }

/* Kártyák és Gridek */
.grid, .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pc-card, .main-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 210, 255, 0.1);
    transition: 0.4s;
    text-align: center;
}

.pc-card:hover { border-color: var(--primary); transform: translateY(-10px); }

.price { font-size: 1.8rem; font-weight: 700; margin: 15px 0; }

.buy-btn {
    display: block;
    background: var(--primary);
    color: var(--deep-dark);
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.spec-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Custom Cursor */
#custom-cursor {
    width: 20px; height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--primary);
}

footer { padding: 50px 10%; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); color: #666; font-size: 0.8rem; }

@media (max-width: 768px) {
    nav { display: none; }
    #custom-cursor { display: none; }
    body { cursor: auto; }
}