body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1d2b64 0%, #764ba2 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-size: 3rem;
    font-weight: lighter;
    margin: 0;
}

p {
    font-size: 1.5rem;
}

.main {
    flex-direction: column;
    max-width: 1100px;
    margin: 40px auto;
    padding: 24px;
    background: rgba(30, 30, 60, 0.85);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header {
    text-align: center;
    margin-bottom: 32px;
}


.alias {
    font-size: 1.2rem;
    font-weight: 400;
    color: #f97316;
}

.subtitle {
    font-size: 1.3rem;
    color: #c7bfff;
    margin-top: 8px;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 1px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 32px;
}

.container,
.aboutme {
    flex: 1 1 350px;
    min-width: 320px;
    background: rgba(40, 40, 80, 0.85);
    border: 1.5px solid #fff;
    border-radius: 16px;
    padding: 28px 24px;
    margin: 0 0 16px 0;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.17);
    transition: transform 0.2s, box-shadow 0.2s;
}

.container:hover,
.aboutme:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.27);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ef4444;
    letter-spacing: 1px;
}

p,
ul {
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

ul {
    padding-left: 20px;
}

.socials {
    margin-top: 18px;
}

.socials a {
    color: #fff;
    margin-right: 18px;
    font-size: 2rem;
    transition: color 0.2s;
}

.socials a:hover {
    color: #ef4444;
}

.skills {
    background: rgba(40, 40, 80, 0.85);
    border: 1.5px solid #fff;
    border-radius: 16px;
    padding: 28px 24px;
    margin: 0 auto;
    box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.17);
    max-width: 700px;
    text-align: center;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 16px;
}

.skill {
    background: #ef4444;
    color: #fff;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.13);
    transition: all 0.1s ease-in-out;
}

.skill i {
    font-size: 1.3rem;
}

.skill:hover {
    transform: scale(1.08);
    background: #a52d2d;

}

@media (max-width: 900px) {
    .flex-row {
        flex-direction: column;
        gap: 0;
    }

    .container,
    .aboutme {
        margin-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .main {
        padding: 8px;
    }

    .container,
    .aboutme,
    .skills {
        padding: 16px 8px;
    }

    .glitch {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}