body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #0a1326;
    color: #e0f0ff;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
}

/* Logo + tagline */
.logo-wrapper {
    text-align: center;
    margin: 3rem 0 5rem;
}

.main-logo {
    width: 380px;
    max-width: 90%;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
}

.tagline {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #00d4ff;
    text-shadow: 0 0 12px #00d4ff;
    font-family: 'Orbitron', sans-serif;
}

/* Główny grid – opis + projekty */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .main-grid { grid-template-columns: 1fr; }
}

/* Lewy opis */
.bio-box {
    background: rgba(10, 20, 60, 0.7);
    border: 1px solid #00d4ff;
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transition: all 0.4s;
}

.bio-box:hover {
    transform: translateY(-8px);
    border-color: #ff6b00;
    box-shadow: 0 0 45px rgba(255, 107, 0, 0.35);
}

.bio-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin: 0 0 0.5rem;
    background: linear-gradient(90deg, #00d4ff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio-box h3 {
    font-size: 1.6rem;
    color: #00ff9d;
    margin: 0 0 1.5rem;
}

.bio-box p {
    line-height: 1.6;
    font-size: 1.15rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid #00d4ff;
    border-radius: 8px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: #ff6b00;
    color: #ff6b00;
}

/* Prawy duży box – projekty */
.projects-box {
    background: rgba(10, 20, 60, 0.7);
    border: 1px solid #00d4ff;
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    text-align: center;
}

.projects-box h2.glitch {
    font-size: 4rem;
    font-family: 'Orbitron', sans-serif;
    color: #00d4ff;
    text-shadow: 0.05em 0 0 #ff6b00, -0.03em -0.04em 0 #00ff9d, 0.025em 0.04em 0 #ff6b00;
    animation: glitch 2.5s infinite;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 #ff6b00, -0.03em -0.04em 0 #00ff9d; }
    14% { text-shadow: 0.05em 0 0 #ff6b00, -0.03em -0.04em 0 #00ff9d; }
    15% { text-shadow: -0.05em -0.025em 0 #ff6b00, 0.025em 0.035em 0 #00ff9d; }
    49% { text-shadow: -0.05em -0.025em 0 #ff6b00, 0.025em 0.035em 0 #00ff9d; }
    50% { text-shadow: 0.05em 0.035em 0 #ff6b00, 0.03em 0 0 #00ff9d; }
    99% { text-shadow: 0.05em 0.035em 0 #ff6b00, 0.03em 0 0 #00ff9d; }
    100% { text-shadow: -0.025em 0 0 #ff6b00, -0.025em -0.04em 0 #00ff9d; }
}

.coming-soon {
    font-size: 2.2rem;
    color: #ff6b00;
    margin: 1rem 0 2.5rem;
    font-family: 'VT323', monospace;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.teaser-item {
    background: rgba(0, 212, 255, 0.08);
    border: 1px dashed #00d4ff;
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 1.1rem;
    color: #88aaff;
}

/* Dolne boxy */
.bottom-boxes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bottom-card {
    background: rgba(10, 20, 60, 0.7);
    border: 2px solid #00d4ff;
    border-radius: 16px;
    padding: 2rem 3rem;
    width: 320px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s;
}

.bottom-card:hover {
    transform: translateY(-12px);
    border-color: #ff6b00;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.4);
}

.bottom-card h3 {
    font-size: 2.2rem;
    margin: 0 0 0.8rem;
    font-family: 'Orbitron', sans-serif;
}

.dashboard h3 { color: #00ff9d; }
.coming h3 { color: #ff6b00; }

/* Mobile tweaks */
@media (max-width: 768px) {
    .logo-wrapper { margin: 2rem 0 4rem; }
    .main-logo { width: 280px; }
    .main-grid { gap: 2rem; }
    .bottom-boxes { flex-direction: column; align-items: center; }
    .bottom-card { width: 90%; max-width: 400px; }
}