/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    background-color: #121212;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    background: url('https://r2.interrupted.me/home/a9iq.jpg') no-repeat center center/cover; /* Custom grid background */
}

/* Use a unique and descriptive class name */
.noto-sans-bold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700; /* Bold weight */
    font-style: normal; /* You can change to italic if needed */
  }
  
  .noto-sans-light {
    font-family: "Noto Sans", sans-serif;
    font-weight: 300; /* Light weight */
    font-style: normal;
  }
  
  /* Example for a flexible variation */
  .noto-sans-custom {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500; /* You can adjust the weight between 100 to 900 */
    font-style: normal;
  }

/* Apply the font to the "Seniors" text */
header h1 {
    font-family: "Made Tommy Bold", serif; /* Fallback to serif if the font doesn't load */
    font-size: 3rem;
    color: #9b59b6;
    transition: text-shadow 0.3s ease, color 0.3s ease;
  }
  
  /* Glow effect on hover */
  header h1:hover {
    text-shadow: 0 0 10px #9b59b6, 0 0 20px #9b59b6, 0 0 30px #9b59b6;
  }
  
  
/* Navigation Links */
.top-nav {
    position: absolute;
    top: 20px;
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.top-nav a {
    color: #9b59b6;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, white, #9b59b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.top-nav a:hover::after {
    transform: scaleX(1);
}

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader Styles */
.loader {
    width: 80px;
    height: 80px;
    border: 10px solid transparent; /* Make the outer border transparent */
    border-top: 10px solid #9b59b6; /* Only the top border has color */
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

/* Remove unnecessary shadows and animations from the loader */
.loader:before,
.loader:after {
    content: "";
    display: none; /* Hide the pseudo-elements to prevent extra visual effects */
}

/* Loader Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@keyframes pulsIn {
    0% {
        box-shadow: inset 0 0 0 10px #fff;
        opacity: 1;
    }
    50%, 100% {
        box-shadow: inset 0 0 0 0 #fff;
        opacity: 0;
    }
}

@keyframes pulsOut {
    0%, 50% {
        box-shadow: 0 0 0 0 #fff;
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 10px #fff;
        opacity: 1;
    }
}

/* Main Content Styles */
.main-content {
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in;
}

header h1 {
    color: #9b59b6;
    font-size: 3rem;
}

p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Drop Shadow Pulse Animation */
@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 20px rgba(155, 89, 182, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
    }
}

/* Apply the animation on hover */
.download-btn {
    background-color: #9b59b6;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

/* Hover effect with pulsing shadow animation */
.download-btn:hover {
    animation: pulseShadow 1.5s infinite;
    transform: scale(1.1);
}

.download-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}

.download-btn:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles */
footer {
    margin-top: 2rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 150px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: scale(1.1);
}

.stat-box strong {
    display: block;
    font-size: 1.5rem;
    color: #9b59b6;
}

.stat-box svg {
    margin-bottom: 0.5rem;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');