/* 
Theme Name: Mstimaj
Theme URI: https://mstimaj.com
Author: Fatima Jalloh
Author URI: https://mstimaj.com
Description: A futuristic tech-themed website for Mstimaj, featuring a cyberpunk-inspired design with gaming and coding aesthetics.
Version: 1.0.0
*/

:root {
  --primary: #0a0a0f;
  --secondary: #1a1a2e;
  --accent: #00ff9d;
  --accent-secondary: #ff00ff;
  --text: #ffffff;
  --text-secondary: #b3b3b3;
  --neon-glow: 0 0 3px rgba(0, 255, 157, 0.4);
  --neon-glow-secondary: 0 0 3px rgba(255, 0, 255, 0.4);
  --font-mono: 'JetBrains Mono', monospace;
  --font-main: 'Inter', sans-serif;
  --transition-smooth: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0; /* Header is sticky, no padding needed */
}

/* Container */
.container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Full-width utility */
.full-width-content {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

/* Responsive container adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
}

/* Navigation styles moved to css/components/navigation.css for better organization */

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-trigger:hover {
  color: var(--accent);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  border: 1px solid rgba(0, 255, 157, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  z-index: 1001;
}

.dropdown-content.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-content a {
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(0, 255, 157, 0.1);
  color: var(--accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
}

.profile-image {
  width: 300px;
  height: 300px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  color: var(--accent);
}

/* Bio Section */
.bio-section {
  padding: 4rem 1rem;
  background-color: rgba(26, 26, 46, 0.5);
}

.bio-content {
  max-width: 1000px;
  margin: 0 auto;
}

.bio-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--accent);
  font-family: var(--font-mono);
}

/* Projects Section */
.carousel-wrapper {
  padding: 4rem 1rem;
}

.carousel-content {
  width: 95%;
  margin: 0 auto;
}

.carousel-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--accent);
  font-family: var(--font-mono);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(26, 26, 46, 0.5);
  padding: 2rem;
}

.carousel-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.slide-label {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}

.carousel-slide h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  padding-left: 1rem;
}

.slide-content {
  padding-left: 1rem;
}

.carousel-button {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.carousel-button:hover {
  color: var(--text);
  opacity: 1;
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.carousel-container:hover .carousel-button {
  opacity: 1;
}

/* Footer */
footer {
  background-color: rgba(15, 15, 22, 0.98);
  padding: 2rem 0 1rem 0 !important;
  border-top: 2px solid rgba(0, 255, 157, 0.25);
  position: relative;
}

/* Subtle gradient at top for visual break */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 255, 157, 0.03), transparent);
  pointer-events: none;
}

.footer-content {
  width: 100%;
  margin: 0;
  padding: 1rem 12rem 0 12rem !important;
}

/* Override inline styles for footer content */
.footer-content[style*="padding"] {
  padding: 1rem 12rem 0 12rem !important;
}

/* Additional targeting for plugin-generated footer content */
footer .footer-content,
div.footer-content,
.footer-content {
  padding-top: 1rem !important;
  margin-top: 1rem !important;
}

.footer-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 120px;
}

.footer-section h3 {
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.1rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  line-height: 1.1;
  opacity: 0.8;
  padding: 0.5rem 0;
}

.footer-section ul li a:hover {
  color: var(--accent);
  opacity: 1;
}

.copyright {
  text-align: center;
  padding: 1rem 0 0.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 255, 157, 0.15);
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
  .footer-content {
    padding: 1.5rem 1rem 0 1rem !important;
  }
  
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  
  .footer-section {
    flex: none;
    width: 100%;
    min-width: 0;
  }
  
  .footer-section h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
  }
  
  .footer-section ul li {
    margin-bottom: 0.3rem;
  }
  
  .footer-section ul li a {
    font-size: 0.75rem;
    opacity: 0.9;
  }
  
  .social-links {
    margin-top: 2rem;
  }
  
  .social-links-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .social-link {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
  
  .copyright {
    padding: 1rem 0;
  }
  
  .copyright p {
    font-size: 0.65rem;
  }
}

/* Very small mobile screens - KEEP 2 COLUMNS FOR MOST MOBILE */
@media (max-width: 320px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h3 {
    margin-bottom: 0.75rem;
  }
}

/* Large Screen Optimizations */
@media (min-width: 1600px) {
  .container {
    max-width: 98%;
  }

  .footer-content {
    padding: 0 8rem;
  }

  .connect-grid,
  .projects-grid {
    width: 98%;
    padding: 2rem 2rem;
  }
}

/* Responsive navigation styles moved to css/components/navigation.css */

@media (max-width: 768px) {
  .container {
    max-width: 98%;
    padding: 0 0.5rem;
  }

  .footer-content {
    padding: 0 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .profile-image {
    width: 250px;
    height: 250px;
  }

  .carousel-button {
    font-size: 1.25rem;
    padding: 0.25rem;
  }
}

/* Animations */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
  }
}

.profile-image {
  animation: glow 3s infinite;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

/* Page Header */
.page-header {
  padding: 4rem 1rem 2rem;
  text-align: center;
  background-color: rgba(26, 26, 46, 0.5);
  position: relative;
}

.header-content {
  max-width: 1000px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2rem;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.social-links {
  text-align: right;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.social-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.75rem;
  line-height: 1.3;
  opacity: 0.8;
}

.social-link:hover {
  color: var(--accent);
  opacity: 1;
}

/* Framework Page Specific Styles */
.framework-page .architecture-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

/* Content Section */
.content-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.content-container {
  background-color: rgba(26, 26, 46, 0.5);
  border-radius: 8px;
  padding: 2rem;
  order: 1;
}

.poems-grid,
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.poem-card,
.article-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(10, 10, 15, 0.5);
  transition: transform 0.3s ease;
}

.poem-card:hover,
.article-card:hover {
  transform: translateY(-5px);
}

.poem-preview,
.article-preview {
  position: relative;
  padding-top: 75%;
}

.poem-preview img,
.article-preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poem-overlay,
.article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.8), rgba(10, 10, 15, 0.95));
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.poem-category,
.article-category {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.poem-overlay h3,
.article-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.poem-excerpt,
.article-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.poem-meta,
.article-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--text);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination-btn {
  background: none;
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--accent);
  color: var(--primary);
}

.pagination-ellipsis {
  color: var(--text);
  display: flex;
  align-items: center;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  order: 2;
}

.sidebar-section {
  background-color: rgba(26, 26, 46, 0.5);
  border-radius: 8px;
  padding: 1.5rem;
}

.sidebar-section h3 {
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.archive-list,
.popular-list {
  list-style: none;
}

.archive-list li,
.popular-list li {
  margin-bottom: 0.5rem;
}

.archive-list a,
.popular-list a {
  color: var(--text);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.archive-list a:hover,
.popular-list a:hover {
  color: var(--accent);
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-btn {
  background-color: var(--accent);
  color: var(--primary);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background-color: var(--text);
  transform: translateY(-2px);
}

/* Filters */
.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-section {
    grid-template-columns: 1fr;
  }

  .content-container {
    order: 1;
  }

  .sidebar {
    order: 2;
  }
}

@media (max-width: 768px) {
  .filters {
    justify-content: center;
  }

  .poems-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Connect Page Styles */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  width: 95%;
  margin: 0 auto;
}

.connect-card {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 157, 0.1));
  pointer-events: none;
}

.connect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.connect-card h2 {
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-caption {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-mono);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.2);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-family: var(--font-mono);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

/* Services Grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.service-emoji {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Support Buttons */
.support-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.support-buttons a {
  flex: 1;
  min-width: 150px;
}

/* Responsive Design for Connect Page */
@media (max-width: 768px) {
  .connect-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .services-container {
    grid-template-columns: 1fr;
  }
  
  .support-buttons {
    flex-direction: column;
  }
  
  .support-buttons a {
    width: 100%;
  }
}

/* Work With Me Section */
.work-with-me-section {
    width: 100%;
    padding: 2rem 0;
    margin-bottom: 3rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.work-with-me-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 20%, 
        var(--accent) 80%, 
        transparent 100%
    );
}

.work-with-me-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.work-with-me-section .stay-connected-card {
    width: 100%;
    margin: 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.work-with-me-section .services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.work-with-me-section .service-card {
    height: 100%;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--accent);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.work-with-me-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 50%, 
        transparent 100%
    );
}

.work-with-me-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
    border-color: var(--accent);
}

.work-with-me-section .service-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    line-height: 1.3;
}

.work-with-me-section .service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.work-with-me-section .service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.work-with-me-section .service-time {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.work-with-me-section .service-price {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 600;
}

.work-with-me-section .add-ons {
    grid-template-columns: repeat(4, 1fr);
}

.work-with-me-section .add-ons .service-card {
    background: rgba(0, 0, 0, 0.4);
}

.work-with-me-section .add-ons .service-card h3 {
    font-size: 1.25rem;
}

/* Responsive adjustments for Work With Me section */
@media (max-width: 1400px) {
    .work-with-me-section .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-with-me-section .add-ons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-with-me-section .services-container,
    .work-with-me-section .add-ons {
        grid-template-columns: 1fr;
    }
    
    .work-with-me-section .container {
        padding: 0 1rem;
    }
    
    .work-with-me-section .stay-connected-card {
        padding: 1.5rem;
    }
    
    .work-with-me-section .service-card {
        padding: 1.25rem;
    }
    
    .work-with-me-section .service-card h3 {
        font-size: 1.25rem;
    }
}

/* Stay Connected Grid */
.stay-connected-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stay-connected-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stay-connected-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 157, 0.1));
    pointer-events: none;
}

.stay-connected-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.stay-connected-card h2 {
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    position: relative;
}

.stay-connected-card h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.stay-connected-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-form,
.collaboration-form,
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Benefits */
.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.1);
    border-radius: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.benefit-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.benefit-text {
    font-family: var(--font-mono);
}

/* Form Messages */
.newsletter-form-message,
.contact-form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.newsletter-form-message .success,
.contact-form-message .success {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: var(--accent);
}

.newsletter-form-message .error,
.contact-form-message .error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-mono);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(0, 255, 157, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button Styles */
.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.3);
}

/* Support Buttons */
.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.support-buttons a {
    text-align: center;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-buttons a:first-child {
    background: var(--accent);
    color: var(--primary);
}

.support-buttons a:not(:first-child) {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.support-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .stay-connected-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stay-connected-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .stay-connected-card {
        padding: 1.5rem;
    }
    
    .stay-connected-card h2 {
        font-size: 1.5rem;
    }
    
    .support-buttons {
        flex-direction: column;
    }
}

/* Session Selector Styles */
.service-selector {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 255, 157, 0.1);
    box-shadow: 0 8px 32px rgba(0, 255, 157, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-select {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 255, 157, 0.3);
    border-radius: 10px;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff9d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.service-select:hover {
    background-color: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.5);
}

.service-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--neon-glow);
}

.service-select option {
    background: rgba(10, 10, 15, 0.95);
    color: var(--accent);
    padding: 1rem;
}

.service-details {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow);
    padding: 0 0.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.service-time, .service-price {
    font-family: var(--font-mono);
    font-size: 1.1rem;
}

.service-time {
    color: var(--text-secondary);
}

.service-price {
    color: var(--accent);
    font-weight: 600;
}

.service-description {
    color: var(--text);
    line-height: 1.8;
    margin: 1rem 0;
    padding: 1.5rem;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.add-ons-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 157, 0.1);
}

.add-ons-section h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: var(--neon-glow);
    font-size: 1.2rem;
    font-family: var(--font-mono);
}

.add-ons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.add-on-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 157, 0.1);
    transition: var(--transition-smooth);
}

.add-on-item:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: rgba(0, 255, 157, 0.3);
}

.add-on-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 1rem;
}

.add-on-name {
    color: var(--text);
    font-size: 1.1rem;
}

.add-on-price {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.1rem;
    font-family: var(--font-mono);
}

.booking-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.btn-book {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent), var(--accent-secondary));
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent));
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-selector {
        padding: 1.5rem;
    }

    .service-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-book {
        width: 100%;
    }
}

/* Projects Page Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
    width: 95%;
    margin: 0 auto;
}

.project-card {
    background: var(--secondary);
    border: 1px solid rgba(0, 255, 157, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--neon-glow);
}

.project-content {
    width: 100%;
}

.project-content h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.status, .category {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(0, 255, 157, 0.1);
    box-shadow: var(--neon-glow);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

.project-features {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--primary);
    border-radius: 8px;
}

.project-features p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li {
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-features li:last-child {
    margin-bottom: 0;
}

/* Gratitude Section Styles */
.third-text {
    padding: 4rem 1rem;
    background: var(--primary);
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.third-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

.third-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    position: relative;
    z-index: 1;
}

.third-content h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.third-content p {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.3);
}

.third-content p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 768px) {
    .third-text {
        padding: 2rem 1rem;
    }
    
    .third-content {
        padding: 1.5rem;
    }
    
    .third-content h2 {
        font-size: 1.5rem;
    }
    
    .third-content p {
        font-size: 1rem;
    }
}

/* Well Wishes Section Styles */
.well-wishes {
    padding: 4rem 1rem;
    background: var(--primary);
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.well-wishes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 0;
}

.well-wishes-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.95);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.code-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.7;
}

.code-dot:nth-child(1) { background: #ff5f56; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #27c93f; }

.code-title {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.wishes-container {
    padding: 2rem;
}

.wishes-container h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.wishes-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wish-line {
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.wish-line:hover {
    transform: translateX(5px);
    color: var(--accent);
    text-shadow: 0 0 8px rgba(0, 255, 157, 0.5);
}

@media (max-width: 768px) {
    .well-wishes {
        padding: 2rem 1rem;
    }
    
    .wishes-container {
        padding: 1.5rem;
    }
    
    .wishes-container h2 {
        font-size: 1.25rem;
    }
    
    .wish-line {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 50px;
    }
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .matrix-bg {
    display: none;
  }

  .identity-toggle {
    transform: none !important;
  }

  .carousel-slide {
    transition: none !important;
  }

  .profile-image {
    animation: none !important;
  }
}

/* Touch Action Improvements */
.link-item,
.carousel-button,
.btn-primary,
.btn-secondary,
.support-btn,
.service-card,
.project-card,
.stay-connected-card {
  touch-action: manipulation;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .profile-image {
    width: 200px;
    height: 200px;
  }
}

/* Identity Toggle */
/* Identity Toggle styles moved to css/components/navigation.css for better organization */

/* Customizer Controls */
.sessions-list,
.addons-list,
.support-links-list {
    margin: 10px 0;
}

.session-item,
.addon-item,
.support-link-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.session-item h4,
.addon-item h4,
.support-link-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.session-item p,
.addon-item p,
.support-link-item p {
    margin: 10px 0;
}

.session-item label,
.addon-item label,
.support-link-item label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.session-item input[type="text"],
.session-item input[type="url"],
.session-item textarea,
.addon-item input[type="text"],
.addon-item input[type="url"],
.support-link-item input[type="text"],
.support-link-item input[type="url"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.session-item textarea {
    min-height: 100px;
    resize: vertical;
}

.add-session,
.remove-session {
    margin: 10px 0;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.remove-session {
    background: #dc3232;
}

.add-session:hover,
.remove-session:hover {
    opacity: 0.9;
}

@keyframes matrix-rain {
    0% {
        opacity: 0.9;
        text-shadow: 0 0 12px rgba(0, 255, 157, 0.9);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 16px rgba(0, 255, 157, 1);
    }
    100% {
        opacity: 0.9;
        text-shadow: 0 0 12px rgba(0, 255, 157, 0.9);
    }
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.3);
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: rgba(0, 255, 157, 0.5);
}

/* Sessions Section Styles */
.sessions-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.sessions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 20%, 
        var(--accent) 80%, 
        transparent 100%
    );
}

.sessions-content {
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sessions-content h2 {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: var(--neon-glow);
}

.sessions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sessions-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sessions-subtitle {
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
}

.sessions-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sessions-tagline {
    font-size: 1.2rem;
    color: var(--accent);
    font-family: var(--font-mono);
    margin: 1rem 0;
}

.btn-sessions {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent), var(--accent-secondary));
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn-sessions:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
    background: linear-gradient(45deg, var(--accent-secondary), var(--accent));
}

.sessions-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-orb {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, 
        rgba(0, 255, 157, 0.2) 0%,
        rgba(0, 255, 157, 0.1) 40%,
        transparent 70%
    );
    border-radius: 50%;
    position: absolute;
    animation: pulse 3s infinite ease-in-out;
}

.code-lines {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.code-line {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.4s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Sessions Section */
@media (max-width: 1024px) {
    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sessions-visual {
        height: 250px;
    }

    .glow-orb {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .sessions-section {
        padding: 3rem 1rem;
    }

    .sessions-content h2 {
        font-size: 1.75rem;
    }

    .sessions-subtitle {
        font-size: 1.25rem;
    }

    .sessions-description {
        font-size: 1rem;
    }

    .sessions-tagline {
        font-size: 1.1rem;
    }

    .btn-sessions {
        width: 100%;
    }
}

/* Articles Grid Layout */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card.featured {
    grid-column: span 2;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-card.featured {
        grid-column: span 1;
    }
}

/* Article Page Styles */
.article-nav {
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.back-link {
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--text);
}

.back-arrow {
    font-size: 1.2rem;
}

.article-content {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 8px;
}

.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.article-category {
    color: var(--accent);
}

.article-date, .read-time {
    color: var(--text-secondary);
}

.article-header h1 {
    font-size: 6rem;
    line-height: 1.1;
    margin: 2rem 0;
    color: var(--text);
    font-family: var(--font-mono);
    text-shadow: var(--neon-glow);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text);
    font-weight: 600;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Legacy .article-hero styles removed - now handled in single-voice_article.php */

.article-text {
    color: var(--text);
    line-height: 1.8;
}

.article-text .lead {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.article-text h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin: 2rem 0 1rem;
    font-family: var(--font-mono);
}

.article-text p {
    margin-bottom: 1.5rem;
}

blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 157, 0.1);
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.article-share h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Comments Section */
.comments-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 8px;
}

.comments-section h2 {
    color: var(--text);
    margin-bottom: 2rem;
    font-family: var(--font-mono);
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-info {
    display: flex;
    flex-direction: column;
}

.comment-author {
    color: var(--text);
    font-weight: 600;
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comment-content {
    color: var(--text);
    line-height: 1.6;
}

.comment-form {
    margin-top: 2rem;
}

.comment-form h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.comment-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--accent);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-mono);
    resize: vertical;
    min-height: 120px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .article-content {
        padding: 1rem;
        margin-top: 60px;
    }

    .article-header h1 {
        font-size: 4rem;
    }

    /* Legacy .article-hero mobile height removed */

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .category-descriptions {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .article-preview {
        padding-top: 120%;
    }
    
    .article-overlay {
        padding: 1rem;
    }
    
    .article-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .article-overlay {
        padding: 1rem;
    }
    
    .article-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .article-excerpt {
        display: none;
    }
}

/* Footer - Compact and Clean */
footer {
  display: block !important;
  visibility: visible !important;
  background: rgba(10, 10, 15, 0.98) !important;
  padding: 2rem 0 1rem !important;
  border-top: 1px solid rgba(0, 255, 157, 0.2) !important;
  position: relative;
  z-index: 100;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem !important;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem !important;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem !important;
  }
}

.footer-section h3 {
  color: var(--accent) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 0.6rem !important;
}

.footer-section ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-section ul li {
  margin-bottom: 0.3rem !important;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
  font-size: 0.78rem !important;
  transition: color 0.2s ease !important;
  line-height: 1.4;
}

.footer-section ul li a:hover {
  color: var(--accent) !important;
}

/* Social links in footer */
.social-links {
  border-top: 1px solid rgba(0, 255, 157, 0.1);
  padding-top: 2rem !important;
  margin-top: 1rem !important;
}

.social-links-container {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem !important;
  justify-content: center;
  padding-top: 0.3rem !important;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.75rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  position: relative !important;
  top: 0 !important;
}

.social-links-container .social-link:first-child {
  margin-top: 0.4rem !important;
}

.social-link:hover {
  color: var(--accent) !important;
}

.social-link svg {
  width: 14px;
  height: 14px;
}

/* Copyright */
.copyright {
  text-align: center;
  padding-top: 0.8rem !important;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(0, 255, 157, 0.1);
}

.copyright p {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.7rem !important;
  margin: 0 !important;
}

/* Toast Notification System */
/* Force remove all scrollbars from toast elements */
.toast-container,
.toast-container *,
.toast,
.toast *,
.toast-header,
.toast-message,
.toast-action,
.toast-progress {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  max-height: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* Hide webkit scrollbars */
.toast-container::-webkit-scrollbar,
.toast::-webkit-scrollbar,
.toast *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-height: 80vh;
  overflow: visible;
}

.toast {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  min-width: 300px;
  max-width: 400px;
  box-shadow: var(--neon-glow);
  transform: scale(0.8) translateY(-20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  position: relative;
  overflow: visible;
}

/* Toast pseudo-elements enabled for progress animation */

.toast.show {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.toast.hide {
  transform: scale(0.8) translateY(-20px);
  opacity: 0;
  background: rgba(10, 10, 15, 0.95) !important;
  border-color: inherit !important;
}

.toast.success {
  border-color: #00ff9d;
  box-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d;
}

.toast.error {
  border-color: #ff4757;
  box-shadow: 0 0 10px #ff4757, 0 0 20px #ff4757;
}

.toast.warning {
  border-color: #ffa502;
  box-shadow: 0 0 10px #ffa502, 0 0 20px #ffa502;
}

.toast.info {
  border-color: #3742fa;
  box-shadow: 0 0 10px #3742fa, 0 0 20px #3742fa;
}

.toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.toast-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
}

.toast.success .toast-icon {
  background: rgba(0, 255, 157, 0.2);
  color: #00ff9d;
}

.toast.error .toast-icon {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
}

.toast.warning .toast-icon {
  background: rgba(255, 165, 2, 0.2);
  color: #ffa502;
}

.toast.info .toast-icon {
  background: rgba(55, 66, 250, 0.2);
  color: #3742fa;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  font-size: 16px;
  line-height: 1;
}

.toast-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.toast-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
  overflow: visible;
  max-height: none;
  word-wrap: break-word;
  position: relative;
  z-index: 2;
}

.toast-action {
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 8px;
  display: inline-block;
}

.toast-action:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--neon-glow);
}

.toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: 8px 8px 0 0;
  animation: toast-perimeter-progress 5s linear forwards;
  z-index: 10;
}

.toast.success::before {
  background: #00ff9d;
}

.toast.error::before {
  background: #ff4757;
}

.toast.warning::before {
  background: #ffa502;
}

.toast.info::before {
  background: #3742fa;
}

@keyframes toast-perimeter-progress {
  0% {
    top: 0; left: 0; width: 0%; height: 2px; 
    border-radius: 8px 8px 0 0;
  }
  25% {
    top: 0; left: 0; width: 100%; height: 2px; 
    border-radius: 8px 8px 0 0;
  }
  25.01% {
    top: 0; right: 0; width: 2px; height: 0%; 
    border-radius: 0 8px 0 0; left: auto;
  }
  50% {
    top: 0; right: 0; width: 2px; height: 100%; 
    border-radius: 0 8px 0 0; left: auto;
  }
  50.01% {
    bottom: 0; right: 0; width: 0%; height: 2px; 
    border-radius: 0 0 8px 8px; top: auto; left: auto;
  }
  75% {
    bottom: 0; right: 0; width: 100%; height: 2px; 
    border-radius: 0 0 8px 8px; top: auto; left: auto;
  }
  75.01% {
    bottom: 0; left: 0; width: 2px; height: 0%; 
    border-radius: 0 0 0 8px; top: auto; right: auto;
  }
  100% {
    bottom: 0; left: 0; width: 2px; height: 100%; 
    border-radius: 0 0 0 8px; top: auto; right: auto;
  }
}

.toast-progress {
  display: none;
}

@keyframes toastCountdown {
  0% {
    opacity: 0.8;
    animation-duration: 1s;
  }
  80% {
    opacity: 0.6;
    animation-duration: 1s;
  }
  95% {
    opacity: 0.4;
    animation-duration: 2s;
  }
  100% {
    opacity: 0.2;
    animation-duration: 3s;
  }
}

/* Progress ring animations handled by JavaScript */

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes toastSlideIn {
  from {
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
  to {
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    max-width: 350px;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
    width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: opacity 0.3s ease;
  }
  
  .toast::before {
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .toast {
    border-width: 2px;
    background: var(--primary);
  }
}

/* ==================================
   VoiceitOnce Shortcode Styling
   ================================== */

/* Articles Grid Layout */
.voiceitonce-articles-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

/* Grid columns based on data attribute */
.voiceitonce-articles-grid[data-columns="1"] {
  grid-template-columns: 1fr;
}

.voiceitonce-articles-grid[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.voiceitonce-articles-grid[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}

/* Featured Articles - Large Layout */
.featured-articles-section .voiceitonce-articles-grid[data-columns="1"] {
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}

.featured-articles-section .voiceitonce-article-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 157, 0.2);
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 200px;
}

.featured-articles-section .voiceitonce-article-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
  transform: translateY(-2px);
}

/* Regular Articles - Grid Layout */
.regular-articles-section .voiceitonce-articles-grid {
  grid-template-columns: repeat(2, 1fr);
}

.regular-articles-section .voiceitonce-article-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.regular-articles-section .voiceitonce-article-card:hover {
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 4px 15px rgba(0, 255, 157, 0.2);
  transform: translateY(-2px);
}

/* Article Card Components */
.voiceitonce-article-image {
  position: relative;
  overflow: hidden;
}

.featured-articles-section .voiceitonce-article-image {
  height: 200px;
}

.regular-articles-section .voiceitonce-article-image {
  height: 150px;
}

.voiceitonce-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.voiceitonce-article-card:hover .voiceitonce-article-image img {
  transform: scale(1.05);
}

.voiceitonce-article-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-articles-section .voiceitonce-article-content {
  padding: 2rem;
  justify-content: center;
}

/* Category Tags */
.voiceitonce-article-category {
  margin-bottom: 1rem;
}

.voiceitonce-category-tag {
  background: var(--accent);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Article Titles */
.voiceitonce-article-title {
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.3;
}

.featured-articles-section .voiceitonce-article-title {
  font-size: 2rem;
  color: var(--accent);
}

.regular-articles-section .voiceitonce-article-title {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.voiceitonce-article-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.voiceitonce-article-title a:hover {
  color: var(--accent);
}

/* Article Excerpts */
.voiceitonce-article-excerpt {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.featured-articles-section .voiceitonce-article-excerpt {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.regular-articles-section .voiceitonce-article-excerpt {
  font-size: 0.95rem;
}

/* Article Meta */
.voiceitonce-article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

.voiceitonce-article-date,
.voiceitonce-read-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.voiceitonce-article-date::before {
  content: "📅";
  margin-right: 0.25rem;
}

.voiceitonce-read-time::before {
  content: "⏱️";
  margin-right: 0.25rem;
}

/* Sidebar Widgets */
.voiceitonce-categories-list,
.popular-articles-widget .voiceitonce-articles-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.voiceitonce-category-item,
.popular-articles-widget .voiceitonce-article-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.voiceitonce-category-link,
.popular-articles-widget .voiceitonce-article-title a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.voiceitonce-category-item:hover,
.popular-articles-widget .voiceitonce-article-card:hover {
  border-color: rgba(0, 255, 157, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.voiceitonce-category-link:hover,
.popular-articles-widget .voiceitonce-article-title a:hover {
  color: var(--accent);
}

.voiceitonce-category-count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Popular Articles Widget Specific */
.popular-articles-widget .voiceitonce-article-content {
  padding: 1rem;
}

.popular-articles-widget .voiceitonce-article-title {
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.popular-articles-widget .voiceitonce-article-meta {
  font-size: 0.75rem;
  gap: 0.75rem;
}

/* No Articles/Categories Messages */
.voiceitonce-no-articles,
.voiceitonce-no-categories {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .voiceitonce-articles-grid[data-columns="3"] {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-articles-section .voiceitonce-article-card {
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
  }
  
  .featured-articles-section .voiceitonce-article-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .voiceitonce-articles-grid[data-columns="2"],
  .voiceitonce-articles-grid[data-columns="3"],
  .regular-articles-section .voiceitonce-articles-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-articles-section .voiceitonce-article-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .featured-articles-section .voiceitonce-article-image {
    height: 200px;
  }
  
  .featured-articles-section .voiceitonce-article-title {
    font-size: 1.5rem;
  }
  
  .voiceitonce-article-meta {
    gap: 0.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .voiceitonce-articles-grid {
    gap: 1rem;
  }
  
  .voiceitonce-article-content,
  .featured-articles-section .voiceitonce-article-content {
    padding: 1rem;
  }
  
  .featured-articles-section .voiceitonce-article-title {
    font-size: 1.25rem;
  }
  
  .regular-articles-section .voiceitonce-article-title {
    font-size: 1.1rem;
  }
}