/* 1. Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Full-Screen Video Background */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover; /* Ensures video fills screen without stretching */
}

.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay to make text pop */
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* 3. Portal Grid (Flexbox) */
.portal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 4. Glassmorphic Cards */
.card {
    flex: 1 1 300px; /* Cards grow/shrink but stay around 300px */
    height: 400px;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05); /* Translucent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

/* 5. Theme-Specific Glow Effects on Hover */
.rasta:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), /* Gold */
                0 0 60px rgba(0, 139, 69, 0.2),  /* Green */
                0 0 90px rgba(224, 25, 33, 0.2); /* Red */
    border-color: #FFD700;
}

.shop:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

.space:hover {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.4), /* Purple */
                0 0 60px rgba(0, 0, 255, 0.3);   /* Blue */
    border-color: #8A2BE2;
}

/* 6. AdSense-Friendly Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ccc;
}

.footer-links a {
    color: #FFD700;
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

