/* === Base Styles === */
* {
    font-family: 'Comic Neue', cursive, sans-serif;
}

body {
    background: linear-gradient(135deg, #1e1e2f, #3a1c71);
    color: #f0f0f0;
    padding: 30px;
}
.About img {
    width:1000px;  
    height: auto;           
    display: flex;           
    border-radius: 25px;
    margin-right: 250px;
    border: 1px solid #E6E6FA;
}

h1 {
    font-size: 2.8em;
    text-align: center;
}

h2 {
    font-size: 2em;
    color: #E6E6FA;
}

/* === Paragraphs === */
p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #ffffffcc;
    text-align:left;
}

/* === About Section === */
.About {
    max-width: 1000px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 3px dashed #E6E6FA;;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

About h2{
    text-align: left;
    margin-bottom: 20px;
    color: #E6E6FA;
}

.About p{
    text-align:left;
}

/* === Skills Section === */
.skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.skills li {
     background-color: rgba(42, 63, 92, 0.3);
    color: #e0e0f0;
    padding: 12px 18px;
    font-size: 25px;
    border-radius: 10px;
    font-weight: bold;
    transition: transform 0.2s ease;
    border: 1px solid #e0e0f0;
}

.skills li:hover {
    background-color: #ffda77;
    color: #1e1e2f;
    border: none;
}

/* === Projects === */
article {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e0e0f0;
}

.project, .onepiece, .contest {
    margin-bottom: 40px;
}

video {
    width: 100%;
    max-height: 400px;
    border-radius: 10px;
    border-radius: 10px;
    margin: 10px auto;
    display: block;
    border: 1px solid #e0e0f0;
}

/* === Buttons === */
.back-btn {
    margin: 30px auto;
    background-color: #2a2f5c;
    color: white;
    font-size: 1.1em;
    padding: 12px 12px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;   /* ← removes underline */
    text-align: center;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #fddb92;
    color: #1e1e2f;
    transform: scale(1.05);
}

a button {
    text-decoration: none;
}

button:hover {
    background-color: #fddb92;
    transform: scale(1.05);
}

/* === Footer === */
/* Footer */
.footer_links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.footer_links i {
    font-size: 30px;
    color: #E6E6FA;
    transition: 0.3s;
}

.footer_links i:hover {
    color: #ffda77;
}

.footer_links h2 {
    font-size: 25px;
    color: #E6E6FA;
}

.footer_links h2:hover {
    color: #ffda77;
}


/* === Responsive Design === */
@media screen and (max-width: 768px) {
    .About img {
        width:460px;
    }

    .skills ul {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    button {
        width: 80%;
    }
}
