* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

:root {
    /* Background and Main Colors */
    --background-dark: #0a0a0a;
    --background-light: #373737; /* Light background for cards, etc. */

    --text-dark: #cccccc;
    --text-light: #ffffff; /* Light text color for dark backgrounds */
    --text-muted: #aaaaaa; /* Muted text color for less emphasis */

    /* Borders, Dividers */
    --border-light: #444444; /* Border and Divider lines */
    --border-dark: #181818;

    --input-bg-light: #161616;

    /* Accent Red */
    --accent-red: #ff4d4d; /* Highlight, CTAs */
    --accent-red-light: #ff6666;
    --accent-red-dark: #cc0000;

    /* Accent Gold */
    --accent-gold: #ffd700; /* verification */
    --accent-gold-light: #ffe066;
    --accent-gold-dark: #ccac00;
    --accent-gold-shadow: #ffe06635;

    /* Accent Green (For success/verified) */
    --accent-green: #00cc66; /* success color */
    --accent-green-light: #33ff99;
    --accent-green-dark: #00994d;

    /* Accent Orange (for warnings or attention */
    --accent-orange: #ff9900; /* warning */
    --accent-orange-light: #ffb733;
    --accent-orange-dark: #cc7a00;
    
    /* Interaction */
    --link-hover-light: #ffffff; /* Link hover color */
    --link-hover-dark: #bebebe;
}

/* Ensure the body stretches to fill the viewport */
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100vh; /* Full viewport height */
    color: var(--text-light);
    background-color: var(--background-dark);
    outline: 1px dashed rgb(255, 88, 88);
    letter-spacing: 1px;
}

/* Main content should take all remaining space */
main {
    flex-grow: 1; /* Fills remaining space */
}
  
/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    margin-bottom: 0.5em;
}
  
/* Paragraphs */
p {
    color: var(--text-dark);
    line-height: 1.6;
}

svg {
    fill: var(--text-light); /* SVG icons and images */
}
  
/* Links */
a {
    color: var(--accent-gold);
    text-decoration: none;
    
}
  
a:hover {
    color: var(--accent-gold-dark);
    text-decoration: underline;
    text-underline-offset: 2.5px;
}
  
/* Buttons */
.button-primary {
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
.button-primary:hover {
    background-color: var(--accent-red-light);
    text-decoration: none;
    color: var(--text-light);
}
  
.button-verified {
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
.button-verified:hover {
    background-color: var(--accent-green-light);
    text-decoration: none;
    color: var(--text-light);
}
  
/* Inputs */
input, textarea, select {
    background-color: var(--background-light);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
    padding: 0.75em;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 1em;
}
  
input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}
  
/* Section Dividers */
.divider {
    border-bottom: 1px solid var(--border-light);
    margin: 0.5em 0;
}
  
/* Cards / Content Boxes */
.card {
    background-color: var(--background-light);
    border: 1px solid var(--border-light);
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 2em;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none; /* Custom focus outline */
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent-gold-light); /* Custom focus outline */
    outline-offset: 2.5px; /* Space between element and outline */
}

input:focus-visible,
textarea:focus-visible {
    outline: 1px solid var(--accent-gold-light);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}