html {
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Global layout */
body {
    margin: 0;
    background: #0B0F2B;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Global link styling */
a,
a:visited {
    color: #7B61FF;
    text-decoration: none;
    font-weight: 600;
}

a:hover,
a:focus {
    color: #3399FF;
    /* optional: gives a subtle interactive feel */
    text-decoration: underline;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 40px 20px;
}

.logo {
    max-width: 240px;
    height: auto;
}

.tagline {
    margin-top: 24px;
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    margin: 40px auto 0;
    height: 3px;
    width: 80px;
    background: #7B61FF;
    border-radius: 2px;
}

/* Skills section */
.skills {
    padding: 20px 20px;
    max-width: 900px;
    margin: auto;
}

.skills h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.skill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.skill-card {
    flex: 1 1 250px;
    background: #11152F;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.skill-card h3 {
    margin-top: 0;
    color: #7B61FF;
}

.skill-card:hover {
    transform: translateY(-4px);
    border-color: #3399FF;
}

/* Contact section */
.contact {
    padding: 60px 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact h2 {
    margin-bottom: 20px;
    color: #FFFFFF;
}

.contact p {
    margin-bottom: 16px;
    opacity: 0.85;
}

.contact-email {
    font-size: 1.2rem;
    color: #00BFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #3399FF;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
}