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

body {
    background: #14030f;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #38bdf830 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}

section {
    padding: 120px 0;
}

.section-header p {
    color: #38bdf8;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.4;
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 25px 0;
    background: rgba(11, 17, 32, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Press Start 2P';
    color: #38bdf8;
    font-size: 12px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.small-text {
    color: #38bdf8;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text span {
    color: #38bdf8;
}

.description {
    color: #94a3b8;
    line-height: 1.9;
    max-width: 550px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 26px;
    background: #38bdf8;
    border: none;
    color: #0f172a;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-4px);
}

.secondary-btn {
    background: transparent;
    border: 1px solid #334155;
    color: #e2e8f0;
}

.image-card {
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 25px;
}

.image-card img {
    width: 100%;
    image-rendering: pixelated;
}

.card {
    background: #111827;
    border: 1px solid #1e293b;
    padding: 40px;
    border-radius: 24px;
    line-height: 2;
    color: #cbd5e1;
}

.center {
    text-align: center;
}

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

.box {
    background: #111827;
    border: 1px solid #1e293b;
    padding: 35px;
    border-radius: 20px;
    transition: 0.3s;
}

.box:hover {
    border-color: #38bdf8;
}

.box h3 {
    margin-bottom: 20px;
}


/* PROJECTS */

.project-card {
    background: #111827;
    border: 1px solid #1e293b;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-top {
    background: #38bdf8;
    color: #0f172a;
    padding: 18px;
    font-family: 'Press Start 2P';
    font-size: 12px;
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    margin-bottom: 15px;
}

.project-content p {
    color: #94a3b8;
    line-height: 1.8;
}

footer {
    padding: 30px;
    text-align: center;
    color: #64748b;
    border-top: 1px solid #1e293b;
}

@media(max-width:900px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 42px;
    }
    .nav-links {
        display: none;
    }
}