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

    background-color: #080808;
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
}


.mini-card.logo {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #FFD700;
    transition: color 0.3s ease;
    align-items: center;
    width: 220px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;

}
/* The main navigation wrapper */
.vibe-mini-nav {
    display: flex;
    justify-content: space-between; /* Pushes logo left, container right */
    align-items: center;           /* Vertically centers everything */
    padding: 1rem 2rem;
    background-color: #0d0d11;     /* Dark atmospheric background */
    border-bottom: 1px solid #1f1f2e;
}

/* The container holding just the navigation links */
.mini-nav-container {
    display: flex;
    gap: 1.5rem;                   /* Clean, uniform spacing between links */
    align-items: center;
}

/* Base styles for all navigation cards/links */
.mini-card {
    text-decoration: none;
    color: #94a3b8;                /* Muted text color by default */
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Logo specific styling */
.mini-card.logo {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.025em;
}

/* Hover effects using your color class naming intent */
.mini-card:hover {
    transform: translateY(-1px);   /* Subtle lift effect */
}
/*
.mini-card.portal:hover { color: #38bdf8; }
.mini-card.red:hover    { color: #f87171; } 
.mini-card.gold:hover   { color: #fbbf24; }
.mini-card.green:hover  { color: #4ade80; }
.mini-card span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    transition: color 0.3s ease; /* Added for smooth color fade
}
*/

/* Specific Hover Glows & Matching Text Colors */
.mini-card.logo:hover { border-color: purple; box-shadow: 0 0 15px rgba(255,255,255,0.2); }
.mini-card.logo:hover span { color: purple; }

.mini-card.portal:hover { border-color: #fff; box-shadow: 0 0 15px rgba(255,255,255,0.2); }
.mini-card.portal:hover span { color: #fff; }

.mini-card.red:hover    { border-color: #E01921; box-shadow: 0 0 15px rgba(224, 25, 33, 0.4); }
.mini-card.red:hover span    { color: #E01921; }

.mini-card.gold:hover   { border-color: #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
.mini-card.gold:hover span   { color: #FFD700; }

.mini-card.green:hover  { border-color: #008B45; box-shadow: 0 0 15px rgba(0, 139, 69, 0.4); }
.mini-card.green:hover span  { color: #008B45; }

.vibe-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('your-rasta-photo.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.vibe-hero h1 { font-size: 4rem; color: #FFD700; text-shadow: 2px 2px 10px rgba(0,0,0,1); }


/* FOOTER */

.rasta-line {
    height: 3px;
    background: linear-gradient(to right, #E01921 33%, #FFD700 33% 66%, #008B45 66%);
    margin-bottom: 20px;
}
.legal-nav a {
    color: #888;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.8rem;
}
.legal-nav a:hover {
    color: #FFD700; /* Gold glow on hover */
}

footer { text-align: center; padding: 100px 0 50px; color: #444; }

