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


:root {
    --dark-blue: #0f2442; 
    --navy-blue: #1a1a40;  
    --soft-blue: #2d2d5a;  
    --white: #e6e6e6;      
    --black: #1b1b1b;      
    --gray: #4e4e4e;
    --highlight: #4dff4d;   
    --background: #111827;
    --nav: #1f2937;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--white);
    margin: 0;
    padding: 0;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;    
}

header {
    background-color: var(--background);
    padding: 25px;
    display: flex;          
    align-items: center;    
    justify-content: space-between; 
    border-bottom: 1px solid var(--nav);
}

header h1 {
    font-size: 1rem; 
    letter-spacing: 0; 
}

footer {
    font-size: 0.7rem;
    text-align: center; 
    background-color: var(--background);
    color: var(--white);
    padding: 20px;
    border-top: 1px solid var(--nav);
    margin-top: 280px;
}

footer p {
    margin: 5px 0; 
}

.disclaimer {
    font-size: 0.8em;
    opacity: 0.8;
}


nav {
    display: flex;
    gap: 4px;              
    background: transparent;
    padding: 0;
}

nav a {
    border-radius: 4px;
    color: var(--white);
    text-decoration: none;
    padding: 6px 12px;
    font-size: 0.9rem;
    white-space: nowrap;    
    transition: all 0.2s;
}

nav a:hover {
    background-color: var(--nav);
    color: var(--white);
    box-shadow: 0 4px 10px black;
    border: 0.5px solid white;
}

.container {
    padding: 0 0 0 20px;     
    margin: 10px auto 0 0;   
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;  
  height: 50px;
  background: var(--navy-blue);
  border-radius: 50%;
}

.btn {
    display: inline-block;
    background-color: var(--soft-blue);
    color: var(--white);
    border: 1px solid var(--highlight);
    margin: 5px 10px 5px 0;  
    text-align: left;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

#staffDashboard {
  padding: 20px;
  min-height: 60vh;
}



.social-links {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    color: var(--white);
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    background-color: transparent;
    background-color: var(--background);
    transition: transform 0.3s;
}


.social-icon.discord i {
  color: #5865F2; 
}

.social-icon.twitter i {
  color: #00A2FF; 
}

.social-icon.youtube i {
    color: #ff0000;
}

.social-icon:hover {
    transform: scale(1.1);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px;
  background: #333;
  color: white;
  border-radius: 4px;
  z-index: 1000;
}


#countdown {
    font-family: 'Courier New', monospace;
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    max-width: 500px;
    background-color: var(--black);
    color: var(--highlight);
    border: 3px solid var(--);
    text-shadow: 0 0 5px rgba(0,255,0,0.7);
    border-radius: 10px;
    box-shadow: 0 4px 10px black;
    transition: transform 0.3s ease;
    position: stickey;
    top: 0; 
    z-index: 100;
}

#countdown:hover{
    transform: translateY(-3px);

}

#timer {
    font-size: 1.8em;
    letter-spacing: 2px;
}

#timer span {
    display: inline-block;
    min-width: 30px;
    font-family: 'Courier New', monospace; 
    color: var(--highlight); 
    text-shadow: 0 0 3px rgba(0,255,0,0.5); 
}

#seconds {
    color: white; 
    font-weight: bold;
}


.countdown-subtext {
    font-size: 0.8em;
    color: #ccc;
    margin-top: 10px;
}

.text-link a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    position: relative;
    left: 100px;
    bottom: 40px;
    margin: 4px 0;
    width: fit-content;
    display: block;
}

.text-link p {
    color: #fff;
    font-size: 10px;
    position: relative;
    left: 100px;
    bottom: 120px;
    border-bottom: 0.5px solid white;
    padding: 2px 10px;
    width: fit-content;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        
    }
    nav {
        margin-top: 10px;
        flex-wrap: wrap;  
        
    }
}
