* {
    cursor: url('https://img.icons8.com/?size=32&id=2dcQtCVzhde4&format=png&color=000000'), auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html,
body {
    height: 100%;
    background: linear-gradient(45deg, #ffcc00, yellowgreen);
    color: #fff;
}

@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        transform: scale(0.8);
        transform-origin: top left;
        width: 125%;
        height: 125%;
        overflow-x: hidden;
        padding: 25px;
    }
}


.container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    height: 100%;
}

@media(min-width: 768px) {
    .container {
        flex-direction: row;
    }
}

.left,
.right {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    min-height: 90vh;
    transition: 0.2s;
    transform: translateY(0);
}


.right:hover {
    box-shadow: 0 0 30px white;
    transition: 0.3s;
    transform: translateY(-5px);
}

.left:hover {
    box-shadow: 0 0 30px white;
    transition: 0.3s;
    transform: translateY(-5px);
}

.left {
    text-align: center;
}

.pfp {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1.5rem;
    transition: 0.2s;
    transform: translateY(0);
}

.pfp:hover {
    transition: 0.3s;
    box-shadow: 0 0 30px yellowgreen;
    border: 2px solid yellowgreen;
    transform: translateY(-5px);
}

.name {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 30px yellowgreen;
}

.role {
    background-color: #444;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    color: #ddd;
    display: inline-block;
}

.divider {
    height: 1px;
    background-color: #333;
    margin: 2rem 0;
}

.info {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 2.2;
}

.info span {
    margin-right: 0.5rem;
}

.right h2 {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
}

.highlight-line {
    height: 4px;
    width: 100px;
    background: #ffcc00;
    border-radius: 4px;
    margin-bottom: 2rem;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #ffcc00;
    }

    to {
        box-shadow: 0 0 20px #ffcc00;
    }
}

.about-text {
    color: #aaa;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.what-title {
    font-size: 1.7rem;
    margin-bottom: 1.8rem;
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

@media(min-width: 768px) {
    .cards {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-width: 0;
    
}


.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.card-title {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    font-weight: bold;
    margin-bottom: 0.6rem;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}


.card p {
    font-size: 1.05rem;
    color: #ccc;
}