:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #00f2ea;
    /* Cyan neon */
    --secondary-color: #ff0055;
    /* Pink neon */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* 3D Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
}

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

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
#home {
    align-items: flex-start;
    padding-left: 10%;
}

.greeting {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 20px;
}

.location {
    margin-bottom: 40px;
    color: #888;
}

/* Buttons */
.cta-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.primary {
    background: var(--accent-color);
    color: #000;
}

.primary:hover {
    box-shadow: 0 0 20px var(--accent-color);
}

.secondary {
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.secondary:hover {
    background: var(--text-color);
    color: #000;
}

#profile-img {
    height: 100px;
    margin-top: 10px;
    border-radius: 50%;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.skill-tags span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    gap: 2px;
    padding: 8px 15px;
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Projects Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-stack {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin: 10px 0;
    font-weight: bold;
}

.link-btn {
    display: inline-block;
    margin-top: 20px;
    margin-right: 15px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

/* Contact */
.contact-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

.contact-info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info .item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    margin-left: 10px;
    transition: color 0.3s;
}

.contact-info .item a:hover {
    color: var(--accent-color);
}

footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }

    /* Simple hide for mobile for this demo */
    #home {
        padding-left: 20px;
    }
}