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

body {
    font-family: 'Courier New', Courier, monospace;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #00ff00;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    color: #00ff00;
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    font-weight: bold;
    letter-spacing: 2px;
}

.subtitle {
    color: #00cc00;
    font-size: 16px;
}

.about-me {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.about-me h2 {
    color: #00ff00;
    font-size: 20px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    letter-spacing: 1px;
}

.about-me p {
    color: #00cc00;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    padding: 18px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #00ff00;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    background: #222222;
    border-color: #00ff00;
}

.link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-text {
    flex: 1;
}

/* Icon styles - all icons use the same green color */
.icon-website,
.icon-github,
.icon-keybase,
.icon-shop,
.icon-x,
.icon-youtube,
.icon-twitch,
.icon-tiktok,
.icon-instagram,
.icon-discord {
    color: #00ff00;
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }
    
    .link {
        padding: 16px 20px;
        font-size: 15px;
    }
}
