body {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', 'Comic Sans MS', cursive, sans-serif;
    background: linear-gradient(to bottom, #000033, #330066);
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    min-height: 100vh;
}

header {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 4px solid #ff00ff;
}

h1 {
    font-size: 4em;
    background: linear-gradient(to right, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px #00ffff;
    margin: 0;
}

.tagline {
    font-size: 1.3em;
    margin: 15px 0;
    color: #00ffff;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #ff00ff;
    box-shadow: 0 0 30px #00ffff;
    margin: 20px auto;
    display: block;
}

.social-buttons a { 
  margin: 0 8px; 
  display: inline-block; } 

.social-buttons img { 
  width: 110px; 
  height: 35px; 
  border: 2px solid #00ffff; 
  border-radius: 15px; 
  box-shadow: 0 0 25px #ff00ff; 
  transition: transform 0.3s ease;
}

.embed-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px dashed #ff00ff;
    border-radius: 20px;
}

.embed-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
}

.caption {
    margin-top: 15px;
    font-size: 1.1em;
    color: #00ffff;
}

.bio {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(51, 0, 102, 0.7);
    border-radius: 20px;
    font-size: 1.2em;
}

/* ==================== RECENT HIGHLIGHTS SECTION ==================== */

.recent-title {
    text-align: center;
    margin: 80px auto 50px auto;
    font-size: 2.5em;
    color: #ff00ff;
    text-shadow: 0 0 20px #00ffff;
}

.recent-section {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-post {
    flex: 2 1 600px;
    display: flex;
    gap: 30px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border: 3px solid #00ffff;
    border-radius: 20px;
    box-shadow: 0 0 30px #ff00ff;
    flex-wrap: wrap;
}

.featured-image {
    flex: 1;
    min-width: 300px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 4px solid #ff00ff;
    box-shadow: 0 0 20px #00ffff;
}

.featured-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h3 {
    font-size: 2.2em;
    color: #ff00ff;
    margin: 0 0 20px 0;
}

.featured-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
    line-height: 1.5;
}

.read-more {
    align-self: flex-start;
    color: #00ffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
}

.read-more:hover {
    text-decoration: underline;
}

.secondary-grid {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.grid-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border: 3px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 20px #ff00ff;
    transition: transform 0.2s;
    text-align: left;
}

.grid-item:hover {
    transform: translateY(-10px);
}

.grid-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.grid-item h3 {
    color: #ff00ff;
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.grid-item p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.grid-item a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

.grid-item a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 999px) {
    .recent-section {
        flex-direction: column;
    }
    
    .featured-post {
        flex-direction: column;
    }
    
    .featured-content h3 {
        font-size: 1.8em;
    }
}

/* ==================== END RECENT SECTION ==================== */

.under-construction {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    z-index: 10;
}

footer {
    padding: 30px;
    font-size: 0.9em;
    color: #ff00ff;
    background: rgba(0, 0, 0, 0.5);
}

footer a {
    color: #00ffff;
}
.nav-bar {
    text-align: center;
    padding: 40px 0 30px 0;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 5px solid #ff00ff;
    box-shadow: 0 5px 25px rgba(255, 0, 255, 0.4);
}

.nav-link {
    display: inline-block;
    color: #00ffff;
    text-decoration: none;
    font-size: 1.8em;
    margin: 0 25px;
    padding: 14px 35px;
    border: 5px solid #00ffff;
    border-radius: 50px;
    background: rgba(0, 255, 255, 0.15);
    transition: all 0.4s ease;
    text-shadow: 0 0 15px #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4),
                inset 0 0 15px rgba(0, 255, 255, 0.2);
}

.nav-link:hover {
    background: rgba(255, 0, 255, 0.3);
    border-color: #ff00ff;
    box-shadow: 0 0 40px #ff00ff,
                inset 0 0 25px rgba(255, 0, 255, 0.3);
    transform: translateY(-6px);
}

.current {
    background: rgba(255, 0, 255, 0.5) !important;
    border-color: #ff00ff !important;
    color: #ffffff !important;
    text-shadow: 0 0 25px #ff00ff;
    box-shadow: 0 0 50px #ff00ff,
                inset 0 0 30px rgba(255, 0, 255, 0.4);
}