:root {
    --bg-color: #11111b;      /* Crust */
    --text-color: #cdd6f4;    /* Text */
    --accent-color: #b4befe;  /* Lavender */
    --secondary-bg: #1e1e2e;  /* Base */
    --highlight-color: #cba6f7; /* Mauve */
    --dragon-red: #f38ba8;    /* Red */
    --mecha-blue: #89b4fa;    /* Blue */
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(180, 190, 254, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
}

.container {
    max-width: 700px;
    width: 100%;
}

header {
    margin-bottom: 3rem;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--accent-color), var(--dragon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(243, 139, 168, 0.4));
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    animation: fadeInDown 0.8s ease-out;
    text-transform: lowercase;
}

h1::before {
    content: '[ ';
    color: var(--dragon-red);
    opacity: 0.6;
}

h1::after {
    content: ' ]';
    color: var(--dragon-red);
    opacity: 0.6;
}

.cursor {
    display: inline-block;
    width: 12px;
    height: 1.2em;
    background-color: var(--accent-color);
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.tagline {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    margin-top: 1rem;
    background: rgba(49, 50, 68, 0.4);
    padding: 0.4rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(180, 190, 254, 0.1);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.tagline i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

section {
    margin-bottom: 3rem;
    background: var(--secondary-bg);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(180, 190, 254, 0.1);
    clip-path: polygon(
        0% 15px, 15px 0%, 
        calc(100% - 15px) 0%, 100% 15px, 
        100% calc(100% - 15px), calc(100% - 15px) 100%, 
        15px 100%, 0% calc(100% - 15px)
    );
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hovering Section Glow - No transform */
section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 15px rgba(243, 139, 168, 0.15);
    border-color: rgba(243, 139, 168, 0.3);
}


section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(180, 190, 254, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Tech lines decoration */
.tech-lines {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    opacity: 0.3;
}

.tech-lines.top-right {
    top: 0;
    right: 0;
    border-top: 2px solid var(--dragon-red);
    border-right: 2px solid var(--dragon-red);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 100%, 80% 20%, 0 20%);
}

section::after {
    content: '◢';
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: var(--dragon-red);
    font-size: 0.8rem;
    opacity: 0.5;
    filter: drop-shadow(0 0 2px var(--dragon-red));
}

h2 {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--dragon-red);
    padding-left: 1rem;
    color: var(--accent-color);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    display: block;
    background: linear-gradient(90deg, rgba(243, 139, 168, 0.1), transparent);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

ul li i {
    margin-right: 1rem;
    color: var(--dragon-red);
    width: 20px;
    text-align: center;
}

#tools-tech .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    font-size: 2.5rem;
    justify-content: center;
    padding: 1rem;
}

#tools-tech .icons i {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(0.5) opacity(0.8);
}

#tools-tech .icons i:hover {
    transform: scale(1.3) rotate(5deg);
    filter: grayscale(0) opacity(1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(49, 50, 68, 0.2);
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.social-links a:hover {
    color: var(--accent-color);
    background: rgba(180, 190, 254, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

footer {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .cursor {
        width: 8px;
    }
}
