@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

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

body {
    font-family: 'Courier Prime', monospace;
    /* Dark purple gradient with subtle fades */
    background: radial-gradient(circle at top left, rgba(127, 10, 10, 0.12) 0%, transparent 60%),
                radial-gradient(circle at bottom right, rgba(64, 4, 4, 0.10) 0%, transparent 60%),
                linear-gradient(135deg, #020000 0%, #0a0000 45%, #000000 100%);
    color: #ff0000;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Entry Screen Styles */
.entry-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.entry-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.entry-title {
    color: limegreen;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 6px #cccccc;
    margin: 0;
}

.main-content-blur {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

.main-content-blur.no-blur {
    filter: blur(0px);
}


/* Digital Matrix Background */
.digital-matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.digital-matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.digital-matrix-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

@keyframes digital-grid {
    0% { 
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-25px) translateY(-25px);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(-50px) translateY(-50px);
        opacity: 0.3;
    }
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}



/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

/* ASCII Container */
.ascii-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-family: 'Courier Prime', monospace;
}

/* Member GIF */
.member-gif {
    max-width: 220px;
    height: auto;
    margin-bottom: 1rem;
}

/* Members List */
.members-list {
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    justify-content: center;
    width: 100%;
}

.member-entry {
    padding: 0.25rem 0.6rem;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 6px #cccccc;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
}

.member-entry:nth-child(1) { animation-delay: 0.2s; }
.member-entry:nth-child(2) { animation-delay: 0.4s; }
.member-entry:nth-child(3) { animation-delay: 0.6s; }
.member-entry:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-entry:hover {
    text-shadow: 0 0 12px #cccccc;
}

.member-name {
    color: limegreen;
    font-weight: 600;
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.member-entry a {
    color: limegreen;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
}

.member-entry a:hover {
    color: limegreen;
    text-shadow: 0 0 8px #dddddd;
}

/* ODDI.CA Link Styling */
.oddi-link {
    margin: 0.5rem 0 1rem 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.oddi-link a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #8b5cf6;
    transition: all 0.3s ease;
    padding: 0.35rem 0.8rem;
    border: 1px solid #3f0a0a;
    border-radius: 5px;
    display: inline-block;
 }

.oddi-link a:hover {
    color: #ffffff;
    text-shadow: 0 0 14px #a855f7;
    border-color: #5a0a0a;
    transform: scale(1.03);
 }

/* Responsive Design */
@media (max-width: 768px) {
    .ascii-container {
        margin: 0 1rem;
        max-width: 100%;
    }
    
    .member-entry {
        font-size: 0.8rem;
        word-break: break-all;
    }
    
    .entry-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05010a;
}

::-webkit-scrollbar-thumb {
    background: #6b21a8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

