/* BLAZEAK47TRUMPINK - Simplified Stylesheet */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-image: url('background.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* consistent on all browsers */
    min-height: 100vh;
    padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Background Overlay */
body::before {
    content: none; /* remove overlay so text sits directly on background */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.2); /* solid translucent fallback for all browsers */
    /* removed blur for cross-browser consistency */
    padding: 10px 0;
    z-index: 1000;
}

.navbar-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
}

.navbar-brand {
    color: #ff1493;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #0066ff;
    text-decoration-thickness: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 12px;
}

/* Mobile Menu Button */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ff1493;
    margin: 3px 0;
    border-radius: 2px;
}

/* Navigation Menu */
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* remove custom scrollbar styling for consistent defaults */
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
}

/* remove previously-defined webkit scrollbar styles to avoid per-browser differences */
.navbar-nav::-webkit-scrollbar { height: auto; }
.navbar-nav::-webkit-scrollbar-track { background: transparent; }
.navbar-nav::-webkit-scrollbar-thumb { background: transparent; }

.navbar-nav li { flex-shrink: 0; white-space: nowrap; }
.navbar-nav a {
    color: #ff1493;
    text-decoration: underline;
    text-decoration-color: #0066ff;
    text-decoration-thickness: 2px;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav a:hover {
    background: rgba(0, 102, 255, 0.2);
    color: #fff;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0; /* no outer frame/margins */
    padding: 20px; /* small inner padding for readability */
}

/* Force section texts to white */
section,
section h1,
section h2,
section h3,
section h4,
section p,
section ol,
section ol li,
section a {
    color: #ffffff;
}

/* Ensure links in sections keep white underline color */
section a {
    text-decoration-color: #ffffff;
}
section a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

/* Header */
header {
    text-align: left;
    padding: 50px 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
}

/* Content */
.content {
    padding: 20px 0;
}

/* Section Separator */
.section-separator {
    margin: 40px 0;
    color: #ff1493;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
    overflow-x: hidden;
}

/* Section Headers */
h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Paragraphs and Lists */
p, ol li {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

ol {
    margin: 20px 0;
    padding-left: 20px;
}

/* Links */
a {
    color: #ff1493;
    text-decoration: underline;
    text-decoration-color: #0066ff;
    text-decoration-thickness: 2px;
}

a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

/* Images */
.title-emoji, .nav-emoji {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
    border-radius: 3px;
}

/* Meme Container */
.meme-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.meme-image {
    height: 200px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Roadmap Chart */
.roadmap-chart {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Blaze GIF */
.blaze-gif {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.1);
}

.blaze-gif img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .navbar-nav.show {
        display: flex;
    }
    
    .navbar-nav a {
        display: block;
        padding: 10px;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 15px;
    }
    
    .meme-container {
        flex-direction: column;
        align-items: center;
    }
    
    .meme-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .blaze-gif {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p, ol li {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav a {
        font-size: 0.9rem;
    }
}

/* BLAZEAK47TRUMPINK - Simplified Stylesheet */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-image: url('background.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 80px;
}

/* Background Overlay */
body::before {
    content: none; /* remove overlay so text sits directly on background */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15); /* subtle transparent tint to enable blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0; /* reduced vertical padding to show more content */
    z-index: 1000;
}

/* Fallback when blur is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .navbar { background: rgba(0, 0, 0, 0.45); }
}

.navbar-container {
    width: 100%;
    max-width: none;
    margin: 0; /* remove auto margins */
    padding: 0 8px; /* minimal side padding so content starts near the left edge */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* start from the very left */
    gap: 8px; /* small gap between brand and nav */
    flex-wrap: nowrap;
}

.navbar-brand {
    color: #ff1493;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #0066ff;
    text-decoration-thickness: 2px;
    white-space: nowrap;
    flex-shrink: 0; /* never shrink the brand */
    margin-right: 102px; /* increased space before ROADMAP */
}

/* Mobile Menu Button */
.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ff1493;
    margin: 3px 0;
    border-radius: 2px;
}

/* Navigation Menu */
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 10px; /* slightly tighter to fit more */
    flex-wrap: nowrap;
    overflow-x: auto; /* allow horizontal scroll if content overflows */
    scrollbar-width: thin; /* show thin scrollbar in Firefox */
    -ms-overflow-style: auto; /* show scrollbar in old Edge/IE */
    margin: 0;
    padding: 0;
    flex: 1 1 auto; /* take remaining space next to the brand */
    justify-content: flex-start; /* keep items starting from left */
}

/* Visible thin scrollbar for Chromium/WebKit */
.navbar-nav::-webkit-scrollbar { height: 6px; }
.navbar-nav::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); }
.navbar-nav::-webkit-scrollbar-thumb { background: rgba(0,102,255,0.5); border-radius: 3px; }

.navbar-nav li {
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-nav a {
    color: #ff1493;
    text-decoration: underline;
    text-decoration-color: #0066ff;
    text-decoration-thickness: 2px;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav a:hover {
    background: rgba(0, 102, 255, 0.2);
    color: #fff;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 50px; /* fixed 50px margins on left and right */
    padding: 20px;
}

/* Header */
header {
    text-align: left;
    padding: 50px 0;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
}

/* Content */
.content {
    padding: 20px 0;
}

/* Section Separator */
.section-separator {
    margin: 40px 0;
    color: #ff1493;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
    overflow-x: hidden;
}

/* Section Headers */
h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Paragraphs and Lists */
p, ol li {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

ol {
    margin: 20px 0;
    padding-left: 20px;
}

/* Links */
a {
    color: #ff1493;
    text-decoration: underline;
    text-decoration-color: #0066ff;
    text-decoration-thickness: 2px;
}

a:hover {
    color: #fff;
    text-decoration-color: #fff;
}

/* Images */
.title-emoji, .nav-emoji {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 8px;
    border-radius: 3px;
}

/* Meme Container */
.meme-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.meme-image {
    height: 200px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Roadmap Chart */
.roadmap-chart {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Blaze GIF */
.blaze-gif {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.1);
}

.blaze-gif img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Reduce issues with fixed background on some browsers */
@media (max-width: 1024px) {
    body { background-attachment: scroll; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-toggle {
        display: none;
    }
    
    .navbar-nav {
        display: flex;
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .navbar-nav::-webkit-scrollbar {
        display: none;
    }
    
    .navbar-nav.show {
        display: flex;
    }
    
    .navbar-nav a {
        display: inline-block;
        padding: 8px 10px;
        text-align: left;
        white-space: nowrap;
    }
    
    h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 15px;
    }
    
    .meme-container {
        flex-direction: column;
        align-items: center;
    }
    
    .meme-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .blaze-gif {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav a {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p, ol li {
        font-size: 1rem;
    }
}
