html {
    background-color: #000; 
    overflow: hidden !important;
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    color: #eef0ff;

    background-image: url("Images/background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@supports not (height: 100dvh) {
    body {
        height: 100vh;
    }
}

@media (max-width: 768px) {
    body {
        background-size: auto 110dvh; 
        background-attachment: scroll; 
    }

    .profile-card {
        max-width: 85%; 
        padding: 1.5rem 1.5rem;
    }
}

#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: #000;
    z-index: 9999; 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 1s ease, visibility 1s;
}

.enter-content p {
    font-family: 'Courier New', Courier, monospace; 
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Class to hide the screen */
.fade-out {
    opacity: 0 !important;
    visibility: hidden;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    width: 100vw;
    position: relative;
    z-index: 2;
}

#snow-canvas {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1; 
}


.profile-card {
    z-index: 10;
    width: 100%;
    max-width: 600px; 
    padding: 0.8rem 2.5rem; 
    background: rgba(0, 0, 0, 0.4); 
    
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    
    border-radius: 22px;
    
    /* 1. Brighter Border: Makes the edge look "lit" */
    border: 1px solid rgba(255, 255, 255, 0.2); 
    
    /* 2. Glowy Outer Shadow: 
       The first shadow is the dark depth, 
       the second is the white outer glow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(255, 255, 255, 0.1); 
    
    position: relative;
    text-align: center;
    
    /* Smooth transition for the glow on hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-8px); 
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(255, 255, 255, 0.2);
}


.profile-pic {
    width: 110px; 
    height: 110px;
    display: inline-block; 
    background-image: url("Images/pfp.png");
    background-size: cover; 
    background-position: center;
    border-radius: 50%;
    margin-top: 0.5rem;   
    margin-bottom: 0.2rem; 
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

h1 {
    font-size: 1.8rem; 
    letter-spacing: -0.5px;
    margin: 0; 
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}


.bio {
    opacity: 0.8;
    font-size: 1rem;
    margin: 0.2rem 0 1rem 0;
}

.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 0; 
    margin-bottom: 0.5rem; 
}

.icon-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease; 
}

.icon-img {
    width: 35px; 
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-link:hover .icon-img {
    transform: scale(1.05) translateY(-5px); 
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)); 
}

.icon-link:active {
    transform: scale(0.9); 
}

.crypto-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.crypto-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.crypto-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.crypto-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.crypto-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* "Copied!" Popup Style */
.copy-status {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.copy-status.show {
    opacity: 1;
    top: -35px;

}



