/* =========================
   GLOBAL / BODY
========================= */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #1aff00;
    font-family: Verdana, sans-serif;
    background-image: url("redeyesblackdragon.png");
    background-size: 50px;
    overflow-x: hidden;
}

/* =========================
   LAYOUT
========================= */
.layout {
    display: flex;
    justify-content: center;
}

.main-content {
    width: 1300px; /* slightly tighter = less stretch */
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}

/* NO GAP + CLEAN BORDER */
.content-area {
    display: flex;
    gap: 0;
    border: 2px solid #1aff00;
    box-shadow: 0 0 15px #1aff00;
}

/* =========================
   HEADER
========================= */
.other-container {
    text-align: center;
    margin-bottom: 15px;
}

/* FIX TOP GIF ROW */
.other-container img {
    display: inline-block;
    height: 100px;
    margin: 0 2px;
}

/* =========================
   MARQUEE
========================= */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    border-top: 2px solid #1aff00;
    border-bottom: 2px solid #1aff00;
    margin: 15px 0;
    background-color: black;
    padding: 5px 0;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 2rem;
    font-weight: bold;
    animation: scroll-left 18s linear infinite;
    letter-spacing: 2px;
    text-shadow:
        0 0 2px #1aff00,
        0 0 5px #00ffcc,
        0 0 10px #1aff00;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background-color: #0057D1;
    padding: 10px;
    text-align: center;
    margin: 15px auto;
    border: 2px solid #1aff00;
    box-shadow: 0 0 10px #1aff00;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

.navbar a:hover {
    color: #1aff00;
    text-shadow: 0 0 8px #1aff00;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
    width: 250px;
    background-color: #001E47;
    padding: 15px;
    border-right: 2px solid #1aff00;
    text-align: center;

    position: sticky;
    top: 10px;
    height: fit-content;
}

.sidebar h3 {
    border-bottom: 1px solid #1aff00;
    padding-bottom: 5px;
}

.sidebar a {
    display: block;
    margin: 10px 0;
    color: #1aff00;
    text-decoration: none;
}

.sidebar a:hover {
    color: white;
    text-shadow: 0 0 10px white;
}

/* =========================
   MAIN CONTENT
========================= */
.container {
    flex: 1;
    background-color: #003175;
    padding: 20px;
    text-align: center;
}

/* FIX BANNER CENTERING */
.container img:first-child {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

/* =========================
   OC WRAPPER
========================= */
.oc-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

/* =========================
   OC PROFILE CARDS (RGB MODE)
========================= */

/* RGB ANIMATION */
@keyframes rgbGlow {
    0%   { box-shadow: 0 0 12px #ff0000; border-color: #ff0000; }
    20%  { box-shadow: 0 0 12px #ff9900; border-color: #ff9900; }
    40%  { box-shadow: 0 0 12px #00ff00; border-color: #00ff00; }
    60%  { box-shadow: 0 0 12px #00ffff; border-color: #00ffff; }
    80%  { box-shadow: 0 0 12px #0066ff; border-color: #0066ff; }
    100% { box-shadow: 0 0 12px #ff00ff; border-color: #ff00ff; }
}

/* BASE CARD */
.oc-profile {
    background: #0d0d0d;
    border: 2px solid #00ffcc;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;

    animation: rgbGlow 6s linear infinite;
    transition: all 0.25s ease;
}

/* HOVER = TRUE NUCLEAR MODE */
.oc-profile:hover {
    transform: translateY(-12px) scale(1.03); /* Lift it higher */
    animation: rgbGlow 1.5s linear infinite; /* Speed up the rotation */
    background: #1a1a1a; /* Lighten the bg slightly to show the glow inside */
    filter: brightness(1.2); /* Boosts the overall luminosity */

    box-shadow:
        /* Internal Inner Glow */
        inset 0 0 20px rgba(255, 255, 255, 0.2),
        /* White Hot Core */
        0 0 15px #fff,
        0 0 30px #fff,
        /* Mid-Tier Bloom (Vibrant) */
        0 0 50px #ff00ff, 
        0 0 80px #00ffff,
        /* Massive External Atmosphere */
        0 0 120px rgba(255, 0, 255, 0.6),
        0 0 180px rgba(0, 255, 255, 0.4),
        0 0 250px rgba(0, 255, 204, 0.2);
    
    /* Makes the actual text inside glow too */
    text-shadow: 0 0
/* TEXT */
}
.profile-content {
    line-height: 1.5;
}

.oc-profile strong {
    color: #ff66cc;
}

.oc-profile:hover h2 {
    color: #fff; /* Turn text white to act as the "filament" of the bulb */
    text-shadow:
        0 0 10px #fff,
        0 0 20px #ff00ff,
        0 0 40px #00ffff,
        0 0 60px #ff00ff;

}
/* =========================
   GLOBAL EFFECTS
========================= */
img {
    transition: transform 0.2s ease;
}

img:hover {
    transform: scale(1.05);
}

a:hover {
    text-shadow:
        0 0 5px #00ffff,
        0 0 15px #00ffff;
}