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

body{
background: linear-gradient(135deg,#2b004d,#5e0066,#8a004f);
color:white;
scroll-behavior:smooth;
}


.navbar{
display:flex;
justify-content:center;
padding:20px;
}

.navbar ul{
list-style:none;
display:flex;
gap:30px;
}

.navbar a{
text-decoration:none;
color:white;
font-weight:600;
padding:8px 18px;
border-radius:20px;
transition:0.3s;
}

.navbar a:hover,
.navbar .active{
background:#ff4d88;
}


.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px 10%;
min-height:100vh;
}

.hero-left{
max-width:500px;
}

.hero-left h1{
font-size:3rem;
margin-bottom:10px;
}

.hero-left h2{
color:#ff4d88;
margin-bottom:20px;
}

.hero-left p{
line-height:1.6;
}

.hero-right img{
width:320px;
border-radius:20px;
box-shadow:0 0 25px rgba(255,0,150,0.4);
}


.about{
text-align:center;
padding:80px 20%;
}


.skills{
text-align:center;
padding:80px 10%;
}

.skills-subtitle{
margin-bottom:40px;
opacity:0.8;
}

.skills-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.skill-card{
background:rgba(255,255,255,0.1);
padding:30px;
width:260px;
border-radius:20px;
transition:0.3s ease;
backdrop-filter:blur(10px);
}

.skill-card h3{
margin-bottom:15px;
color:#ff4d88;
}

.skill-card p{
font-size:0.9rem;
margin-bottom:15px;
}

.skill-card span{
font-size:0.8rem;
opacity:0.8;
}

.skill-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(255,77,136,0.4);
}


.dream{
text-align:center;
padding:80px 20%;
}

.contact{
text-align:center;
padding:60px;
}
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.contact {
    text-align: center;
    padding: 80px 0;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.contact-icons img {
    width: 60px;
    transition: 0.3s ease;
    cursor: pointer;
}

.contact-icons img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #ff4d88);
}
#toonsite {
    text-align: center;
    padding: 100px 20px;
}

.toon-title {
    font-size: 32px;
    margin-bottom: 60px;
}

.portal-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.portal {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff4d88, #1e1e1e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 77, 136, 0.4);
}

.portal span {
    font-size: 40px;
}

.portal p {
    margin-top: 10px;
    font-size: 14px;
}

.portal:hover {
    transform: translateY(-15px) scale(1.1);
    box-shadow: 0 0 40px #ff4d88;
}