/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Animated stars background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #00ccff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0,200,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(150,50,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #0064ff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Banner Section */
.banner {
    position: relative;
    margin-bottom: 32px;
    border-radius: 20px;
    overflow: hidden;
    background-image: url('../assets/dss.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 100, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 200px;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(1px);
    animation: bannerShimmer 8s ease-in-out infinite alternate;
}

@keyframes bannerShimmer {
    0% { 
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    }
    100% { 
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    }
    }
}

.banner-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.profile-image {
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(0, 200, 255, 0.5);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 30px rgba(0, 100, 255, 0.7),
        0 0 60px rgba(0, 200, 255, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 100, 255, 0.9),
        0 0 80px rgba(0, 200, 255, 0.5),
        0 12px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.banner h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 1),
        0 0 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Bio Section */
.bio-section {
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bio-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 300;
    text-align: left;
    font-style: italic;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-item {
    display: block;
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.15) 0%, rgba(150, 50, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 16px;
    padding: 18px 24px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 200, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.link-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 100, 255, 0.5),
        0 0 40px rgba(0, 200, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 200, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.2) 0%, rgba(150, 50, 255, 0.15) 100%);
}

.link-item.primary {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.4) 0%, rgba(150, 50, 255, 0.3) 100%);
    border: 1px solid rgba(0, 200, 255, 0.5);
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 100, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-item.primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 100, 255, 0.7),
        0 0 60px rgba(0, 200, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.5) 0%, rgba(150, 50, 255, 0.4) 100%);
}

.link-text {
    display: block;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .banner-content {
        padding: 24px 16px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .banner h1 {
        font-size: 20px;
    }
    
    .avatar {
        width: 70px;
        height: 70px;
    }
    
    .bio-section {
        margin-top: 24px;
        padding: 16px;
    }
    
    .bio-text {
        font-size: 12px;
    }
    
    .link-item {
        padding: 16px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .banner h1 {
        font-size: 24px;
    }
    
    .avatar {
        width: 75px;
        height: 75px;
    }
    
    .banner-content {
        padding: 30px 20px;
        gap: 20px;
    }
}

/* Enhanced cosmic effects for larger screens */
@media (min-width: 768px) {
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        pointer-events: none;
        z-index: -1;
    }
}
/* Link Icons */
.link-icon {
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-text {
    display: block;
    position: relative;
    z-index: 1;
}

/* Service-specific icon colors */
.fa-soundcloud {
    color: #ff5500;
}

.fa-spotify {
    color: #1db954;
}

.fa-youtube {
    color: #ff0000;
}

.fa-facebook {
    color: #1877f2;
}

.fa-instagram {
    color: #e4405f;
}

.fa-blog {
    color: #00ccff;
}

.fa-download {
    color: #00ff88;
}

.fa-envelope {
    color: #ffffff;
}

/* Icon hover effects */
.link-item:hover .link-icon {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .link-icon {
        font-size: 18px;
        margin-right: 10px;
        width: 20px;
    }
}

/* Social Footer */
.social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 32px 0 16px 0;
    padding: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.15) 0%, rgba(150, 50, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 200, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.3), transparent);
    transition: left 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 100, 255, 0.5),
        0 0 40px rgba(0, 200, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 200, 255, 0.6);
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.25) 0%, rgba(150, 50, 255, 0.2) 100%);
}

/* Social icon specific colors */
.social-icon .fa-youtube {
    color: #ff0000;
}

.social-icon .fa-facebook {
    color: #1877f2;
}

.social-icon .fa-instagram {
    color: #e4405f;
}

.social-icon .fa-envelope {
    color: #ffffff;
}

.social-icon:hover .fa-youtube {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.social-icon:hover .fa-facebook {
    color: #4267B2;
    text-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
}

.social-icon:hover .fa-instagram {
    color: #fd5949;
    text-shadow: 0 0 10px rgba(228, 64, 95, 0.5);
}

.social-icon:hover .fa-envelope {
    color: #00ccff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Visitor Counter */
.visitor-counter {
    margin-top: 16px;
}

.counter-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Responsive adjustments for social footer */
@media (max-width: 480px) {
    .social-footer {
        gap: 16px;
        margin: 24px 0 12px 0;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* Expandable Section Styles */
.expandable-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expanded-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.expanded-links.expanded-visible {
    opacity: 1;
    transform: translateY(0);
}

.link-item.expanded {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.1) 0%, rgba(150, 50, 255, 0.05) 100%);
    border: 1px solid rgba(0, 200, 255, 0.2);
    padding: 14px 20px;
    font-size: 14px;
    margin-left: 20px;
    border-radius: 12px;
}

.link-item.expanded:hover {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.15) 0%, rgba(150, 50, 255, 0.1) 100%);
    border-color: rgba(0, 200, 255, 0.4);
    transform: translateY(-2px) scale(1.01);
}

.link-item.expanded .link-icon {
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
}

/* Service-specific colors for expanded links */
.fa-linkedin {
    color: #0077b5;
}

.fa-graduation-cap {
    color: #00ff88;
}

.fa-x-twitter {
    color: #1da1f2;
}

/* Plus/Minus icon animation */
#other-icon {
    transition: transform 0.3s ease;
}

#other-toggle:hover #other-icon {
    transform: rotate(90deg);
}

/* Responsive adjustments for expandable section */
@media (max-width: 480px) {
    .link-item.expanded {
        margin-left: 16px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .link-item.expanded .link-icon {
        font-size: 14px;
        margin-right: 8px;
        width: 18px;
    }
}