:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.02);
    --primary: #00d2ff;
    --accent: #00ff88;
    --text-main: #f0f0f0;
    --text-dim: #909090;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1)
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.bg-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #0d0d1a 0%, #050505 100%);
    z-index: -2
}

.blob {
    position: fixed;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none
}

.dashboard {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    padding: 1.25rem
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.glass:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04)
}

.item-hero {
    grid-row: span 2;
    justify-content: center;
    text-align: left
}

.item-project-1 {
    grid-column: span 2
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary)
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem
}

p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.5
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.project-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%
}

.project-img {
    width: 40%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px
}

.project-details {
    flex: 1
}

.mini-project-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--text-main);
    border: 1px solid var(--glass-border)
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: auto
}

.btn-contact {
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition)
}

.btn-primary {
    background: var(--primary);
    color: white
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05)
}

@media (max-width:1100px) {
    .dashboard {
        grid-template-columns: 1fr 1fr;
        height: auto;
        overflow-y: auto
    }

    body {
        overflow-y: auto;
        height: auto;
        padding: 2rem 0
    }

    .item-hero {
        grid-row: span 1;
        grid-column: span 2
    }

    .item-project-1 {
        grid-column: span 2
    }
}

@media (max-width:700px) {
    .dashboard {
        grid-template-columns: 1fr
    }

    .item-hero,
    .item-project-1 {
        grid-column: span 1
    }
}