#python.content-section {
    background: linear-gradient(120deg, #1e3c72 0%, #2a5298 100%);
    color: #fffde4;
    box-shadow: 0 4px 32px rgba(30,60,114,0.15);
    border: 1.5px solid #ffd70033;
}
#python h2 {
    color: #ffd700;
    letter-spacing: 1px;
    font-size: 2.2rem;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px #1e3c72cc;
}
#python .python-card {
    background: #223a5e;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(30,60,114,0.12);
    border: 1.5px solid #ffd70033;
    margin-bottom: 24px;
    padding: 24px 28px;
    color: #fffde4;
    transition: transform 0.2s, box-shadow 0.2s;
}
#python .python-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 24px #1e3c72cc;
}
#python .python-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}
#python .python-card p {
    color: #fffde4;
    font-size: 1.1rem;
    margin-bottom: 0;
}
#python pre, #python code {
    background: #182848;
    color: #ffd700;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 1rem;
    font-family: 'Fira Mono', 'Consolas', monospace;
    margin: 12px 0;
    overflow-x: auto;
}
/* Section-specific styles */
#home.content-section .hero {
    background: linear-gradient(135deg, #00faff 0%, #0e2cf1 100%);
    color: #fff;
}

#sites.content-section {
    background: linear-gradient(120deg, #232526 0%, #414345 100%);
    color: #e0f7fa;
}
#sites .repo-card {
    background: #232b3a;
    border: 1px solid #00faff33;
    color: #fff;
}
#sites h2 {
    color: #00faff;
    letter-spacing: 1px;
}

#python.content-section {
    background: linear-gradient(120deg, #1e3c72 0%, #2a5298 100%);
    color: #fffde4;
}
#python h2 {
    color: #ffd700;
    letter-spacing: 1px;
}

#gba-rom-hacks.content-section {
    background: linear-gradient(120deg, #ff512f 0%, #dd2476 100%);
    color: #fff0f6;
}
#gba-rom-hacks h2 {
    color: #ffb347;
    letter-spacing: 1px;
}

#about.content-section {
    background: linear-gradient(120deg, #232526 0%, #414345 100%);
    color: #e0e0e0;
}
#about h2 {
    color: #00faff;
    letter-spacing: 1px;
}

#cyberpatriot.content-section {
    background: linear-gradient(120deg, #283e51 0%, #485563 100%);
    color: #e0f7fa;
}
#cyberpatriot h2 {
    color: #00faff;
    letter-spacing: 1px;
}
/* Hero Section Styles */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(135deg, #00faff 0%, #0e2cf1 100%);
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    animation: fadeIn 1.2s ease;
}

body.home-active {
    background: none !important;
    overflow: hidden;
}

.hero-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    margin-bottom: 24px;
    background: #fff;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight {
    color: #00faff;
    background: rgba(0,250,255,0.08);
    padding: 0 8px;
    border-radius: 6px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0f7fa;
    margin-bottom: 28px;
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    background: #00faff;
    color: #1c1c1c;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,250,255,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    margin-top: 10px;
}
.hero-cta:hover {
    background: #1c1c1c;
    color: #00faff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(0,250,255,0.25);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

nav {
    background-color: #1c1c1c;
    padding: 10px 0;
    position: relative;
    z-index: 200;
    margin-bottom: 0;
    box-shadow: none;
        height: 60px;
}

nav ul {
    list-style-type: none;
    text-align: center;
        display: flex;
        align-items: stretch;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
        display: flex;
        align-items: stretch;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
        height: 100%;
        display: flex;
        align-items: center;
}

nav ul li a:hover {
    background-color: #00faff;
}

header {
    text-align: center;
    margin-top: 50px;
}

header h1 {
    font-size: 3rem;
    color: #00faff;
}

.repo-card {
    background-color: #1c1c1c;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.repo-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.repo-card a {
    color: #00faff;
    text-decoration: none;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.repo-card p {
    color: #aaa;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Styling for the search bar */
#searchBar {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#searchBar::placeholder {
    color: #aaa;
}

#searchBar:focus {
    outline: none;
    background-color: #000;
}

/* Duplicate nav bar rules removed to avoid conflicts */
nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 300;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
nav ul li .dropdown a {
    display: block;
    padding: 10px;
    white-space: nowrap;
    color: black; /* Changed to black for better visibility on white background */
}
nav ul li .dropdown a:hover {
    background-color: #f0f0f0; /* Added hover background color */
}
nav ul li:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
nav ul li .arrow {
    display: none;
/* Section styling improvements */
.content-section {
    margin-top: 80px;
    padding: 32px 0 32px 0;
    min-height: 60vh;
    background: rgba(0,0,0,0.7);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    width: 80vw;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}
}
.repo-card {
    background-color: #1c1c1c;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.repo-card a {
    color: #05FAFF;
    text-decoration: none;
}
.repo-card a:hover {
    text-decoration: underline;
}