/* General Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Noise Overlay Background Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, transparent 20%, rgba(255,255,255,0.3) 21%, rgba(255,255,255,0.3) 34%, transparent 35%, transparent),
        linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.05) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.05) 76%, transparent 77%, transparent);
    pointer-events: none;
    z-index: 1;
}

/* Container layout */
.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

/* Header Styling */
.header {
    text-align: center;
    margin-bottom: 40px;
}

/* Banner Image Styling */
.banner-image {
    width: 100%;
    max-width: 380px;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    object-fit: cover;
}

/* Tagline Styling */
.tagline {
    font-size: 14px;
    color: #00ffff;
    letter-spacing: 1px;
    margin-bottom: 30px;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Profile Image Container */
.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #000, #333, #000);
    border: 2px solid #00ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Navigation Links Container */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual Link Items as Cards */
.link-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 18px 24px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Link Hover Shimmer Animation */
.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-item:hover::before {
    left: 100%;
}

/* Hover State for Cards */
.link-item:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Flex container for icon and text inside links */
.link-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon Styling in Links */
.link-icon {
    font-size: 20px;
    color: #00ffff;
    width: 24px;
}

/* Text Styling in Links */
.link-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Arrow Icon on Right side of link item */
.link-arrow {
    font-size: 16px;
    color: #666;
    transition: color 0.3s ease;
}

.link-item:hover .link-arrow {
    color: #00ffff;
}

/* Footer Styling */
.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Email link styling in Footer */
.contact-email {
    color: #00ffff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-all;
}

.contact-email:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Copyright Text in Footer */
.copyright {
    font-size: 11px;
    color: #444;
    letter-spacing: 1px;
}

/* Legal info subtle link in footer */
.legal-link {
    display: block;
    text-align: right;
    font-size: 12px;
    margin: 8px 0 0 0;
    color: #446e6e;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}

.legal-link:hover {
    color: #00ffff;
    opacity: 1;
    text-decoration: underline;
}

/* Responsive for mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }
    .banner-image {
        max-width: 95vw;
    }
    .profile-image {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}
