* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    background: #0a0a0a;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    min-height: 100vh;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 30px auto;
}

hr {
    border-top: 2px double #333;
    margin: 50px;
}

h2,
h3,
p,
ul,
li,
#hero,
#about,
#skills,
#experience,
#contact,
footer,
.project,
.contact-card,
.image-square-wrapper,
a {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 15px auto;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

h2:hover,
h3:hover,
p:hover,
ul:hover,
li:hover,
#hero:hover,
#about:hover,
#skills:hover,
#experience:hover,
#contact:hover,
footer:hover,
.project:hover,
.contact-card:hover,
.image-square-wrapper:hover,
a:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff007f;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
}

#projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: none;
    border: none;
}

.project {
    flex: 1 1 300px;
    max-width: 350px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: none;
    border: none;
    padding: 0;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.image-square-wrapper {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
    max-width: 300px;
}

.image-square-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
}

a,
button {
    cursor: pointer;
    font-weight: bold;
}

button {
    background: linear-gradient(45deg, #ff007f, #7f00ff);
    border: none;
    padding: 15px 30px;
}

.icon {
    width: 24px;
    height: 24px;
}

ul {
    list-style: none;
}

li {
    margin: 8px 0;
}


nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    margin: 20px auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

nav a {
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

nav span:not(:last-child)::after {
    content: "|";
    color: rgba(255, 255, 255, 0.15);
    margin-left: 10px;
}