* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: radial-gradient(circle at top, #1b0028, #000);
    color: #eee;
    min-height: 100vh;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    width: 70%;
    max-width: 900px;
    margin: 80px auto 40px auto;
}

.intro-text {
    max-width: 600px;
}

.intro-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.accent {
    color: #a855f7;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
}

.intro-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #a855f7;
    object-fit: cover;
}

.skills {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #a855f7;
}

.bubble-container {
    position: relative;
    width: 70%;
    max-width: 900px; 
    height: 420px;
    background: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
    margin-bottom: 20px;
}

/* BUBBLES */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.bubble img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    pointer-events: none;
}

.about-links {
    margin: 20px auto 80px auto;
    width: 70%;
    max-width: 900px;
    margin-bottom: 80px;
}

.about-links-inner p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Subtle purple links */
.about-links-inner a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.about-links-inner a:hover {
    color: #d8b4fe;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.contact {
    width: 70%;
    max-width: 900px;
    margin: 60px auto 80px auto;
    text-align: center;
}

.contact h2 {
    color: #a855f7;
    margin-bottom: 15px;
}

.contact p {
    color: #ccc;
    font-size: 1.05rem;
}

.contact a {
    color: #a855f7;
    font-weight: 600;
    text-decoration: none;
}

.contact a:hover {
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 36px;

    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: #ffffff !important;
    text-decoration: none;

    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 999px;

    box-shadow: 
        0 0 15px rgba(168, 85, 247, 0.6),
        0 0 30px rgba(168, 85, 247, 0.4);

    animation: ctaGlow 2.5s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.06);
    box-shadow: 
        0 0 25px rgba(168, 85, 247, 0.9),
        0 0 50px rgba(168, 85, 247, 0.7);
}

@keyframes ctaGlow {
    0% {
        box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.9);
    }
    100% {
        box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
    }
}
