/* === AIDevWorks Meetup Page - Bootstrap Enhanced === */

/* Import Bootstrap CDN */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Custom CSS Variables for Dark Theme */
:root {
  --bs-primary: #345ef0;
  --bs-secondary: #61dafb;
  --bs-success: #28a745;
  --bs-warning: #ffc107;
  --bs-dark: #0d1117;
  --bs-body-bg: #0d1117;
  --bs-body-color: #e6edf3;
  --bs-border-color: #30363d;
  --bs-card-bg: #161b22;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif !important;
  background: #0d1117 !important;
  color: #e6edf3 !important;
  line-height: 1.6;
  min-height: 100vh;
  /* padding-top: 80px; */
   /* Account for fixed navbar */
}

/* Bootstrap Overrides for Dark Theme */
.container,
.container-fluid {
  max-width: 1200px;
}

.card {
  background-color: var(--bs-card-bg) !important;
  border: 1px solid var(--bs-border-color) !important;
}

.table-dark {
  --bs-table-bg: #161b22;
  --bs-table-border-color: #30363d;
}

.btn-primary {
  background: linear-gradient(135deg, #345ef0, #2a4bc7) !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(52, 94, 240, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a4bc7, #1e3a8a) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 94, 240, 0.4);
}

.btn-outline-primary {
  color: #61dafb !important;
  border-color: #345ef0 !important;
  box-shadow: 0 0 10px rgba(52, 94, 240, 0.2);
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #345ef0, #2a4bc7) !important;
  border-color: #345ef0 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 94, 240, 0.4);
}

/* === Hero Section === */
.hero {
  background: linear-gradient(145deg, #0d1b2a, #1b263b, #0a192f);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 2px solid rgba(52, 94, 240, 0.4);
  box-shadow: 0 0 40px rgba(52, 94, 240, 0.15);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(52, 94, 240, 0.15), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1), transparent 70%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(52, 94, 240, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.hero h1 {
  font-size: 2.5rem;
  color: #61dafb;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
  font-weight: 700;
}

/* Founder text styling */
.hero .text-muted {
  color: #ffffff !important;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero .text-muted a {
  color: #61dafb !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero .text-muted a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.hero .lead {
  font-size: 1.25rem;
  color: #d1e0f0;
  margin-bottom: 2rem;
}

/* About and Community Cards */
.about-card,
.community-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border-left: 4px solid #61dafb !important;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
}

.community-card {
  border-left-color: #345ef0 !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.about-card ul,
.community-card ul {
  list-style: none;
  padding-left: 0;
}

.about-card li {
  margin: 0.5rem 0;
}

.about-card strong {
  color: #00b4d8;
}

.community-card a {
  color: #61dafb !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.community-card a:hover {
  color: #00ffff !important;
  text-decoration: underline;
}

/* === Main Content === */
.main-content {
  background: #161b22;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
  margin: 2rem 0;
}

/* Section Headings */
.section-title {
  font-size: 2rem;
  color: #61dafb !important;
  border-bottom: 3px solid #345ef0;
  padding-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

/* === Bootstrap Table Enhancements === */
.table-responsive {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}

.table-dark thead th {
  background: linear-gradient(135deg, #345ef0, #2a4bc7) !important;
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border: none !important;
}

.table-dark tbody tr {
  transition: background-color 0.3s ease;
}

.table-dark tbody tr:hover {
  background: rgba(52, 94, 240, 0.1) !important;
  box-shadow: inset 0 0 10px rgba(52, 94, 240, 0.2);
}

/* === Alert Components === */
.alert-warning {
  background: rgba(255, 193, 7, 0.1) !important;
  border-left: 4px solid #ffc107 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  color: #e6c547 !important;
}

.alert-warning code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  color: #f0f6fc;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1) !important;
  border-left: 4px solid #28a745 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  color: #a7c957 !important;
}

.alert-info {
  background: rgba(108, 117, 125, 0.1) !important;
  border-left: 4px solid #6c757d !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  color: #b8c5d1 !important;
}

/* === PDF Preview === */
.preview-container {
  border: 2px solid #30363d;
  border-radius: 12px;
  overflow: hidden;
  background: #0d1117;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#pdfObject {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: 600px;
}

/* === Features List === */
.features-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.features-list li {
  margin: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #c9d1d9;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* === Form Controls === */
.form-control {
  background: #0d1117 !important;
  border: 2px solid #30363d !important;
  color: #e6edf3 !important;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

.form-control:focus {
  background: #0d1117 !important;
  border-color: #345ef0 !important;
  box-shadow: 0 0 10px rgba(52, 94, 240, 0.3) !important;
  color: #e6edf3 !important;
}

/* === Footer === */
.footer {
  background: rgba(0, 0, 0, 0.5);
  color: #8b949e;
  border-radius: 20px 20px 0 0;
  border-top: 1px solid #30363d;
}

/* === Responsive Utilities === */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .table-responsive {
    font-size: 0.8rem;
  }
  
  #pdfObject {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .main-content {
    margin: 1rem 0;
  }
  
  #pdfObject {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* === Animation === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  animation: fadeIn 0.6s ease-out;
}

/* === Button Group Responsive === */
.btn-group-responsive .btn {
  margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
  .btn-group-responsive {
    display: flex;
    flex-direction: column;
  }
  
  .btn-group-responsive .btn {
    width: 100%;
    margin-right: 0;
  }
}

/* === Loading States === */
.btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed;
  transform: none !important;
}

/* === Selection Highlight === */
::selection {
  background: rgba(52, 94, 240, 0.3);
}

::-moz-selection {
  background: rgba(52, 94, 240, 0.3);
}

/* === Main Content === */
.content {
  background: #161b22;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}

/* Section Headings */
h2 {
  font-size: 1.8rem;
  color: #61dafb;
  margin-bottom: 1rem;
  border-bottom: 3px solid #345ef0;
  padding-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

/* === Meetup Table === */
.meetups {
  margin-bottom: 3rem;
}

.meetup-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #30363d;
}

.meetup-table th,
.meetup-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #21262d;
}

.meetup-table th {
  background: linear-gradient(135deg, #345ef0, #2a4bc7);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.meetup-table tbody tr {
  transition: background-color 0.3s ease;
}

.meetup-table tbody tr:hover {
  background: rgba(52, 94, 240, 0.1);
  box-shadow: inset 0 0 10px rgba(52, 94, 240, 0.2);
}

.meetup-table tbody tr:last-child td {
  border-bottom: none;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #345ef0, #2a4bc7);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(52, 94, 240, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #2a4bc7, #1e3a8a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 94, 240, 0.4);
}

.btn.outline {
  background: transparent;
  color: #61dafb;
  border: 2px solid #345ef0;
  box-shadow: 0 0 10px rgba(52, 94, 240, 0.2);
}

.btn.outline:hover {
  background: linear-gradient(135deg, #345ef0, #2a4bc7);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 94, 240, 0.4);
}

/* === Preview Section === */
#preview {
  margin-bottom: 3rem;
}

.preview-note {
  background: rgba(255, 193, 7, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #e6c547;
}

.preview-note code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  color: #f0f6fc;
}

.preview-wrap {
  border: 2px solid #30363d;
  border-radius: 12px;
  overflow: hidden;
  background: #0d1117;
}

#pdfObject {
  display: block;
  border-radius: 10px;
}

/* === Features Section === */
.features {
  background: rgba(40, 167, 69, 0.1);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border-left: 4px solid #28a745;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.features ul {
  list-style: none;
  margin-top: 1rem;
}

.features li {
  margin: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #c9d1d9;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

/* === Share Section === */
.share {
  background: rgba(108, 117, 125, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.shareInput {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #30363d;
  border-radius: 8px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: #0d1117;
  color: #e6edf3;
}

.shareInput:focus {
  outline: none;
  border-color: #345ef0;
  box-shadow: 0 0 10px rgba(52, 94, 240, 0.3);
}

.shareActions {
  margin-bottom: 1rem;
}

/* === Footer === */
.footer {
  background: rgba(0, 0, 0, 0.5);
  color: #8b949e;
  padding: 1.5rem 0;
  text-align: center;
  border-radius: 20px 20px 0 0;
  border-top: 1px solid #30363d;
}

.footer small {
  opacity: 0.8;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .hero {
    padding: 40px 10px;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .content {
    padding: 1.5rem;
    margin: 1rem auto;
  }
  
  .meetup-table {
    font-size: 0.9rem;
  }
  
  .meetup-table th,
  .meetup-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .btn {
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 10px;
  }
  
  h1 {
    font-size: 1.4rem;
  }
  
  .about,
  .community-links,
  .features,
  .share {
    padding: 1rem;
  }
  
  .meetup-table th,
  .meetup-table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
  }
}

/* === Animation === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  animation: fadeIn 0.6s ease-out;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* === Community Links Enhanced === */
.community-links {
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  border-left: 4px solid #345ef0;
  border: 1px solid rgba(52, 94, 240, 0.2);
}

.community-links .btn {
  transition: all 0.3s ease;
  border-width: 2px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.community-links .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.community-links .btn:hover::before {
  left: 100%;
}

.community-links .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 94, 240, 0.4);
  border-color: #61dafb;
}

.community-links .btn svg {
  transition: transform 0.3s ease;
}

.community-links .btn:hover svg {
  transform: scale(1.1);
}

/* Platform-Specific Button Colors */
.community-links .btn:has(path[d*="20.317"]):hover {
  background: linear-gradient(135deg, #5865f2, #4752c4) !important;
  color: white !important;
}

.community-links .btn:has(path[d*="20.447"]):hover {
  background: linear-gradient(135deg, #0077b5, #005885) !important;
  color: white !important;
}

.community-links .btn:has(path[d*="6.98"]):hover {
  background: linear-gradient(135deg, #e51937, #b8162d) !important;
  color: white !important;
}

/* Info Alert Enhancement */
.community-links .alert-info {
  background: rgba(52, 94, 240, 0.1) !important;
  border: 1px solid rgba(52, 94, 240, 0.3) !important;
  color: #c9d1d9 !important;
}

.community-links .alert-info svg {
  color: #28a745;
  flex-shrink: 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .community-links {
    padding: 1.5rem;
  }
  
  .community-links .btn {
    font-size: 0.9rem;
    padding: 0.75rem !important;
  }
  
  .community-links .btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  .community-links {
    padding: 1rem;
  }
  
  .community-links .btn {
    font-size: 0.85rem;
    padding: 0.6rem !important;
  }
  
  .community-links .btn .fw-semibold {
    font-size: 0.9rem;
  }
  
  .community-links .alert-info {
    font-size: 0.9rem;
  }
  
  .community-links .alert-info svg {
    width: 20px;
    height: 20px;
  }
}

/* Animation for buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 94, 240, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 94, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 94, 240, 0);
  }
}

.community-links .btn:focus {
  animation: pulse 1.5s infinite;
}

/* Selection Highlight */
::selection {
  background: rgba(52, 94, 240, 0.3);
}

::-moz-selection {
  background: rgba(52, 94, 240, 0.3);
}

/* === Enhanced Animations === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(97, 218, 251, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(97, 218, 251, 0.8);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay {
  animation: slideUp 0.8s ease-out 0.5s both;
}

.animate-slide-up-final {
  animation: slideUp 0.8s ease-out 0.8s both;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* === Enhanced Hero Styles === */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-section {
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, #61dafb, #345ef0, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.founder-text {
  margin-bottom: 2rem !important;
}

.founder-badge {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.2), rgba(97, 218, 251, 0.2));
  border: 1px solid rgba(97, 218, 251, 0.3);
  border-radius: 25px;
  padding: 8px 20px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.founder-link {
  color: #61dafb !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.founder-link:hover {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(97, 218, 251, 0.8);
}

.highlight-text {
  background: linear-gradient(135deg, #61dafb, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* === Feature Cards === */
.features-grid {
  margin: 3rem 0;
}

.section-subtitle {
  color: #61dafb;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(97, 218, 251, 0.3);
}

.feature-card {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.8), rgba(13, 17, 23, 0.9));
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(97, 218, 251, 0.5);
  box-shadow: 0 15px 35px rgba(52, 94, 240, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: pulseGlow 2s infinite alternate;
}

.feature-card h4 {
  color: #61dafb;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #d1e0f0;
  line-height: 1.6;
  margin-bottom: 0;
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(97, 218, 251, 0.1));
  border: 1px solid rgba(97, 218, 251, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(97, 218, 251, 0.1), transparent 70%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.pulse-indicator {
  font-size: 2rem;
  animation: pulseGlow 1.5s infinite;
}

/* === Enhanced Community Buttons === */
.community-header {
  margin-bottom: 3rem;
}

.community-description {
  font-size: 1.1rem;
  color: #d1e0f0;
  max-width: 600px;
  margin: 0 auto;
}

.community-btn {
  display: block;
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(13, 17, 23, 0.95));
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.community-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.community-btn:hover::before {
  transform: translateX(100%);
}

.community-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(52, 94, 240, 0.3);
  color: #ffffff;
}

.discord-btn {
  border-color: rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
  border-color: #5865f2;
  box-shadow: 0 15px 35px rgba(88, 101, 242, 0.3);
}

.linkedin-btn {
  border-color: rgba(0, 119, 181, 0.3);
}

.linkedin-btn:hover {
  border-color: #0077b5;
  box-shadow: 0 15px 35px rgba(0, 119, 181, 0.3);
}

.meetup-btn {
  border-color: rgba(237, 71, 102, 0.3);
}

.meetup-btn:hover {
  border-color: #ed4766;
  box-shadow: 0 15px 35px rgba(237, 71, 102, 0.3);
}

.btn-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(52, 94, 240, 0.1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.btn-title {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.btn-subtitle {
  font-size: 0.9rem;
  color: #a1a1aa;
  display: block;
}

.btn-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.community-btn:hover .btn-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* === Community Stats === */
.community-stats {
  padding: 2rem 0;
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #61dafb;
  text-shadow: 0 0 10px rgba(97, 218, 251, 0.3);
}

.stat-label {
  color: #d1e0f0;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* === Enhanced Alert === */
.alert-gradient {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.15), rgba(97, 218, 251, 0.15));
  border: 1px solid rgba(97, 218, 251, 0.3) !important;
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
}

.alert-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #345ef0, #61dafb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-content {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* === Responsive Enhancements === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .community-btn {
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
}

/* === Projects Section === */
.projects-section {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.95));
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
  position: relative;
}

.projects-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 25% 25%, rgba(52, 94, 240, 0.1), transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(97, 218, 251, 0.08), transparent 50%);
  z-index: 0;
}

.projects-section .container {
  position: relative;
  z-index: 1;
}

.projects-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.projects-header .lead {
  color: #d1e0f0;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* === Project Cards === */
.project-card {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(13, 17, 23, 0.95));
  border: 2px solid rgba(52, 94, 240, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(97, 218, 251, 0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}

.project-card:hover::before {
  transform: translateX(100%);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(97, 218, 251, 0.4);
  box-shadow: 0 20px 40px rgba(52, 94, 240, 0.2);
}

.project-card.coming-soon {
  border-color: rgba(168, 162, 158, 0.2);
}

.project-card.coming-soon:hover {
  border-color: rgba(168, 162, 158, 0.4);
  box-shadow: 0 20px 40px rgba(168, 162, 158, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.project-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #345ef0, #61dafb);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 20px rgba(52, 94, 240, 0.3);
}

.coming-soon-icon {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  box-shadow: 0 8px 20px rgba(107, 114, 128, 0.2);
}

.project-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.coming-soon-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.project-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.project-description {
  color: #d1e0f0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.feature-tag {
  background: rgba(52, 94, 240, 0.15);
  border: 1px solid rgba(52, 94, 240, 0.3);
  color: #61dafb;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-tag.upcoming {
  background: rgba(168, 162, 158, 0.1);
  border-color: rgba(168, 162, 158, 0.2);
  color: #a8a29e;
}

.feature-tag:hover {
  background: rgba(52, 94, 240, 0.25);
  border-color: rgba(97, 218, 251, 0.4);
  color: #ffffff;
}

.project-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-project {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-project.primary {
  background: linear-gradient(135deg, #345ef0, #2a4bc7);
  color: white;
  box-shadow: 0 6px 20px rgba(52, 94, 240, 0.3);
}

.btn-project.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 94, 240, 0.4);
  color: white;
}

.btn-project.secondary {
  background: transparent;
  color: #61dafb;
  border-color: rgba(97, 218, 251, 0.3);
}

.btn-project.secondary:hover {
  background: rgba(97, 218, 251, 0.1);
  border-color: rgba(97, 218, 251, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.projects-footer {
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  padding-top: 2rem;
}

.projects-footer .alert-gradient {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(97, 218, 251, 0.1));
  border: 1px solid rgba(97, 218, 251, 0.2) !important;
  border-radius: 16px;
  padding: 1.5rem;
}

/* === Responsive Projects === */
@media (max-width: 768px) {
  .projects-header h2 {
    font-size: 2rem;
  }
  
  .projects-header .lead {
    font-size: 1.1rem;
  }
  
  .project-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .project-actions {
    flex-direction: column;
  }
  
  .btn-project {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .projects-section {
    padding: 3rem 0;
  }
  
  .project-card {
    padding: 1.2rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }
  
  .project-title {
    font-size: 1.3rem;
  }
  
  .projects-footer .alert-gradient {
    padding: 1rem;
  }
}

/* === PDF Fallback Styling === */
.pdf-fallback {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(13, 17, 23, 0.95));
  border: 2px dashed rgba(97, 218, 251, 0.3);
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  position: relative;
}

.pdf-fallback::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(97, 218, 251, 0.05), transparent 70%);
  border-radius: 14px;
  z-index: 0;
}

.pdf-fallback > * {
  position: relative;
  z-index: 1;
}

.fallback-icon {
  animation: pulseGlow 2s infinite alternate;
}

.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.fallback-actions .btn {
  border-radius: 12px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fallback-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 94, 240, 0.3);
}

.fallback-tip {
  max-width: 500px;
  text-align: center;
  padding: 1rem;
  background: rgba(97, 218, 251, 0.05);
  border: 1px solid rgba(97, 218, 251, 0.15);
  border-radius: 12px;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .fallback-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .fallback-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .pdf-fallback {
    padding: 2rem 1rem;
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .fallback-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .pdf-fallback h4 {
    font-size: 1.3rem;
  }
  
  .pdf-fallback p {
    font-size: 0.95rem;
  }
}

/* === Navigation Menu === */

/* Bootstrap Navbar Override for Sticky Header */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  width: 100%;
  background: rgba(13, 17, 23, 0.95) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Navbar Brand */
.navbar-brand {
  color: #ffffff !important;
  font-weight: 700;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #61dafb !important;
}

.brand-text {
  font-size: 1.3rem;
  background: linear-gradient(135deg, #61dafb, #345ef0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meetup-nav {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.95));
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
  z-index: 1000;
}

.nav-content {
  min-height: 60px;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.brand-link:hover {
  color: #61dafb;
  text-decoration: none;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #61dafb, #345ef0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #d1e0f0;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #61dafb;
  background: rgba(97, 218, 251, 0.1);
  text-decoration: none;
}

.nav-link.active {
  color: #61dafb;
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.2), rgba(97, 218, 251, 0.1));
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(97, 218, 251, 0.2);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #61dafb;
  border-radius: 50%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-nav.primary {
  background: linear-gradient(135deg, #345ef0, #2a4bc7);
  color: white;
  box-shadow: 0 4px 12px rgba(52, 94, 240, 0.3);
}

.btn-nav.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 94, 240, 0.4);
  color: white;
  text-decoration: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #d1e0f0;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-menu-toggle:hover {
  background: rgba(97, 218, 251, 0.1);
  color: #61dafb;
}

.mobile-menu-toggle:focus {
  outline: none;
  background: rgba(97, 218, 251, 0.1);
  color: #61dafb;
}

/* Mobile Menu Collapse Fix */
#mobileMenu {
  transition: height 0.3s ease;
}

#mobileMenu.show {
  display: block !important;
}

#mobileMenu.collapsing {
  height: auto !important;
  transition: none;
}

.mobile-nav-menu {
  background: rgba(13, 17, 23, 0.95);
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 0 0 12px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-nav-link {
  display: block;
  color: #d1e0f0;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #61dafb;
  background: rgba(97, 218, 251, 0.1);
  text-decoration: none;
}

.mobile-nav-link.active {
  color: #61dafb;
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.2), rgba(97, 218, 251, 0.1));
  text-decoration: none;
  border-left: 3px solid #61dafb;
}

/* === Upcoming Events Section === */
.upcoming-events-section {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.95), rgba(13, 17, 23, 0.95));
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
  position: relative;
}

.upcoming-events-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(52, 94, 240, 0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(97, 218, 251, 0.06), transparent 60%);
  z-index: 0;
}

.upcoming-events-section .container {
  position: relative;
  z-index: 1;
}

.events-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.events-header .lead {
  color: #d1e0f0;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* === Event Cards === */
.event-card {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.9), rgba(13, 17, 23, 0.95));
  border: 2px solid rgba(52, 94, 240, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(97, 218, 251, 0.02), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}

.event-card:hover::before {
  transform: translateX(100%);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(97, 218, 251, 0.4);
  box-shadow: 0 20px 40px rgba(52, 94, 240, 0.2);
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.event-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.event-date {
  text-align: right;
  color: #61dafb;
}

.date-main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.date-time {
  font-size: 0.9rem;
  color: #d1e0f0;
  margin-top: 0.2rem;
}

.event-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.event-subtitle {
  color: #61dafb;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.event-description {
  color: #d1e0f0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.event-highlights {
  position: relative;
  z-index: 1;
}

.highlights-title {
  color: #61dafb;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-number {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-content {
  color: #d1e0f0;
  line-height: 1.5;
}

.highlight-content strong {
  color: #ffffff;
}

.highlight-content ul {
  margin: 0.5rem 0 0 0;
  padding-left: 1.2rem;
}

.highlight-content li {
  margin-bottom: 0.3rem;
}

.event-goal {
  background: rgba(52, 94, 240, 0.1);
  border: 1px solid rgba(52, 94, 240, 0.3);
  border-radius: 12px;
  padding: 1rem;
  color: #61dafb;
  margin-top: 1rem;
}

.event-actions {
  position: relative;
  z-index: 1;
}

.btn-event {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-event.primary {
  background: linear-gradient(135deg, #345ef0, #2a4bc7);
  color: white;
  box-shadow: 0 6px 20px rgba(52, 94, 240, 0.3);
}

.btn-event.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 94, 240, 0.4);
  color: white;
  text-decoration: none;
}

.events-footer {
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  padding-top: 2rem;
}

/* === Responsive Navigation === */
@media (max-width: 768px) {
  .nav-title {
    font-size: 1.1rem;
  }
  
  .event-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .event-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .event-date {
    text-align: left;
  }
  
  .event-title {
    font-size: 1.2rem;
  }
  
  .events-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .meetup-nav .container {
    padding: 0 1rem;
  }
  
  .nav-content {
    min-height: 50px;
  }
  
  .event-card {
    padding: 1.2rem;
  }
  
  .highlight-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .events-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .founder-badge {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* === Blog & Resources Pages === */

/* Featured Post */
.featured-post {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(97, 218, 251, 0.05));
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.featured-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #345ef0, #61dafb);
}

/* Resource Lists */
.resource-list {
  list-style: none;
  padding-left: 0;
}

.resource-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(52, 94, 240, 0.1);
}

.resource-list li:last-child {
  border-bottom: none;
}

.resource-list a {
  color: #d1e0f0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.resource-list a:hover {
  color: #61dafb;
  text-decoration: none;
}

.resource-list a::before {
  content: '🔗';
  margin-right: 8px;
  opacity: 0.7;
}

/* Resource Categories */
.resource-category h5 {
  color: #61dafb;
  font-weight: 600;
  border-bottom: 2px solid rgba(97, 218, 251, 0.2);
  padding-bottom: 0.5rem;
}

/* Blog Post Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 94, 240, 0.2);
}

/* Post Tags */
.post-tags .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}

/* Author Info */
.author-info strong {
  color: #61dafb;
}

/* Newsletter Section */
.input-group .form-control {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.3);
  color: #e6edf3;
}

.input-group .form-control:focus {
  background: rgba(22, 27, 34, 0.9);
  border-color: #61dafb;
  box-shadow: 0 0 0 0.2rem rgba(97, 218, 251, 0.25);
  color: #e6edf3;
}

.input-group .form-control::placeholder {
  color: #8b949e;
}

/* Category Badges */
.badge.text-decoration-none:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Archive Links */
.archive-links a {
  color: #d1e0f0;
  transition: color 0.3s ease;
}

.archive-links a:hover {
  color: #61dafb;
}

/* === Coming Soon Modal === */
.modal-content {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.95));
  border: 1px solid rgba(52, 94, 240, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal-header {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(97, 218, 251, 0.05));
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 12px 12px 0 0;
}

.modal-title .gradient-text {
  background: linear-gradient(135deg, #345ef0, #61dafb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.btn-close-white {
  filter: invert(1);
  opacity: 0.8;
}

.btn-close-white:hover {
  opacity: 1;
}

.coming-soon-content .pulse-indicator {
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

.coming-soon-content h4 {
  color: #61dafb;
  font-weight: 600;
}

.features-preview .badge {
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  margin: 0.2rem;
}

.modal-footer {
  background: rgba(22, 27, 34, 0.5);
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 0 0 12px 12px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* === Blog Detail Page Styles === */

/* Breadcrumb */
.breadcrumb-section {
  background: rgba(13, 17, 23, 0.8);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
}

.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb-item a {
  color: #58a6ff;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #79c0ff;
}

.breadcrumb-item.active {
  color: #f0f6fc;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #7d8590;
}

/* Article Header */
.article-header {
  border-bottom: 2px solid rgba(52, 94, 240, 0.2);
  padding-bottom: 2rem;
}

.article-title {
  color: #f0f6fc;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.author-avatar .avatar-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #58a6ff, #345ecc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.author-info h6 a {
  color: #58a6ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-info h6 a:hover {
  color: #79c0ff;
}

.featured-image-placeholder {
  background: linear-gradient(135deg, #21262d, #30363d);
  border: 2px dashed rgba(52, 94, 240, 0.3);
  border-radius: 12px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d8590;
  text-align: center;
}

.featured-image-placeholder i {
  color: #58a6ff;
  opacity: 0.7;
}

/* Article Content */
.article-content {
  color: #e6edf3;
  line-height: 1.7;
  font-size: 1.1rem;
}

.article-content h2 {
  color: #f0f6fc;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(52, 94, 240, 0.2);
}

.article-content h3 {
  color: #58a6ff;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.article-content h4 {
  color: #79c0ff;
  font-weight: 500;
  margin: 1.5rem 0 1rem 0;
}

.blockquote-custom {
  background: rgba(52, 94, 240, 0.1);
  border-left: 4px solid #58a6ff;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.blockquote-custom p {
  color: #f0f6fc;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blockquote-custom footer {
  color: #7d8590;
  font-size: 0.9rem;
}

.feature-list {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.feature-list li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  color: #e6edf3;
}

.feature-list li strong {
  color: #58a6ff;
}

.code-example {
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.code-example h4 {
  color: #58a6ff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.code-example pre {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 1rem;
  overflow-x: auto;
  margin: 0;
}

.code-example code {
  color: #e6edf3;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

.learning-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.learning-card:hover {
  border-color: #58a6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 94, 240, 0.2);
}

.learning-card h5 {
  color: #58a6ff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.learning-card p {
  color: #e6edf3;
  margin: 0;
  font-size: 0.95rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #58a6ff, #345ecc);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #58a6ff;
  border-radius: 50%;
  border: 3px solid #0d1117;
}

.timeline-content h6 {
  color: #58a6ff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-content p {
  color: #e6edf3;
  margin: 0;
  font-size: 0.95rem;
}

.call-to-action {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(88, 166, 255, 0.1));
  border: 1px solid rgba(52, 94, 240, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.call-to-action h4 {
  color: #58a6ff;
  margin-bottom: 1rem;
}

.call-to-action p {
  color: #e6edf3;
  margin-bottom: 1.5rem;
}

/* Article Footer */
.article-footer {
  border-top: 1px solid rgba(52, 94, 240, 0.2) !important;
}

.tags .badge {
  background: rgba(52, 94, 240, 0.2) !important;
  color: #e6edf3;
  font-weight: normal;
}

.share-buttons .btn {
  border-color: rgba(52, 94, 240, 0.4);
  color: #58a6ff;
}

.share-buttons .btn:hover {
  background: rgba(52, 94, 240, 0.2);
  border-color: #58a6ff;
  color: #79c0ff;
}

/* Sidebar Styles */
.blog-sidebar {
  padding-left: 2rem;
}

.sidebar-widget {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h5 {
  color: #58a6ff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(52, 94, 240, 0.2);
  padding-bottom: 0.5rem;
}

.author-bio .author-avatar .avatar-circle {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.author-bio h6 a {
  color: #58a6ff;
  text-decoration: none;
}

.author-bio h6 a:hover {
  color: #79c0ff;
}

.author-bio p {
  color: #e6edf3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.author-links .btn {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
}

.related-post {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(52, 94, 240, 0.1);
}

.related-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-post h6 a {
  color: #e6edf3;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.related-post h6 a:hover {
  color: #58a6ff;
}

.newsletter {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(88, 166, 255, 0.05)) !important;
}

.newsletter p {
  color: #e6edf3;
  font-size: 0.95rem;
}

.newsletter-form .form-control {
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.3);
  color: #e6edf3;
}

.newsletter-form .form-control:focus {
  background: rgba(13, 17, 23, 0.9);
  border-color: #58a6ff;
  color: #e6edf3;
  box-shadow: 0 0 0 0.2rem rgba(88, 166, 255, 0.25);
}

.newsletter-form .form-control::placeholder {
  color: #7d8590;
}

.community-stats .stat-item {
  text-align: center;
  margin-bottom: 1.5rem;
}

.community-stats .stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #58a6ff;
  line-height: 1;
}

.community-stats .stat-label {
  font-size: 0.85rem;
  color: #7d8590;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Navigation */
.blog-navigation {
  border-top: 2px solid rgba(52, 94, 240, 0.2);
  padding-top: 2rem;
}

.nav-post {
  display: block;
  text-decoration: none;
  padding: 1.5rem;
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.nav-post:hover {
  border-color: #58a6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 94, 240, 0.2);
  text-decoration: none;
}

.nav-label {
  display: block;
  font-size: 0.85rem;
  color: #7d8590;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.nav-title {
  display: block;
  color: #e6edf3;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
}

.nav-post:hover .nav-title {
  color: #58a6ff;
}

/* === NishAI Page Styles === */

/* NishAI Logo */
.nishai-logo {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(88, 166, 255, 0.3), transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Feature Cards */
.feature-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #58a6ff, transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  border-color: #58a6ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 94, 240, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  color: #58a6ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: #e6edf3;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.feature-list li {
  color: #e6edf3;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: '✓';
  color: #58a6ff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Technical Section */
.tech-section {
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 16px;
  padding: 3rem;
  margin: 2rem 0;
}

.tech-card {
  background: rgba(22, 27, 34, 0.9);
  border: 1px solid rgba(52, 94, 240, 0.1);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.tech-card h4 {
  color: #58a6ff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tech-badge {
  background: rgba(52, 94, 240, 0.2);
  color: #e6edf3;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(52, 94, 240, 0.3);
}

/* Demo Section */
.demo-section {
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 16px;
  padding: 3rem;
}

.demo-container {
  max-width: 600px;
  margin: 0 auto;
}

.demo-chat {
  background: rgba(22, 27, 34, 0.9);
  border: 1px solid rgba(52, 94, 240, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.chat-header {
  background: rgba(52, 94, 240, 0.1);
  padding: 1rem;
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
}

.chat-status {
  display: flex;
  align-items: center;
  color: #e6edf3;
  font-weight: 500;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-indicator.online {
  background: #28a745;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.6);
}

.chat-messages {
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
}

.message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(52, 94, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.message-content {
  background: rgba(52, 94, 240, 0.1);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 12px;
  padding: 1rem;
  color: #e6edf3;
  flex: 1;
}

.message-content p {
  margin-bottom: 0.5rem;
}

.message-content ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.message-content li {
  margin-bottom: 0.25rem;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid rgba(52, 94, 240, 0.2);
}

.chat-input .form-control {
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.3);
  color: #e6edf3;
}

.chat-input .form-control:focus {
  background: rgba(13, 17, 23, 0.9);
  border-color: #58a6ff;
  color: #e6edf3;
  box-shadow: 0 0 0 0.2rem rgba(88, 166, 255, 0.25);
}

/* Use Case Cards */
.use-case-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.use-case-card:hover {
  border-color: #58a6ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 94, 240, 0.2);
}

.use-case-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.use-case-card h5 {
  color: #58a6ff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.use-case-card p {
  color: #e6edf3;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Coming Soon Section */
.coming-soon-section {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.1), rgba(88, 166, 255, 0.05));
  border: 1px solid rgba(52, 94, 240, 0.3);
  border-radius: 16px;
  padding: 3rem;
}

.feature-preview {
  background: rgba(22, 27, 34, 0.6);
  border: 1px solid rgba(52, 94, 240, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-preview:hover {
  border-color: #58a6ff;
  transform: translateY(-2px);
}

.preview-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-preview h6 {
  color: #58a6ff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-preview p {
  color: #e6edf3;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Hero Buttons */
.hero-buttons .btn {
  min-width: 180px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

/* CTA Buttons */
.cta-buttons .btn {
  min-width: 200px;
  font-weight: 600;
  padding: 0.75rem 2rem;
}

/* Responsive Design for NishAI */
@media (max-width: 768px) {
  .nishai-logo {
    font-size: 3rem;
  }
  
  .feature-card, .tech-card, .demo-section, .coming-soon-section {
    padding: 1.5rem;
  }
  
  .tech-section {
    padding: 2rem;
  }
  
  .hero-buttons .btn, .cta-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .tech-stack {
    justify-content: center;
  }
  
  .demo-container {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  .feature-card, .use-case-card, .feature-preview {
    padding: 1rem;
  }
  
  .tech-card {
    padding: 1.5rem;
  }
  
  .feature-icon, .use-case-icon {
    font-size: 2rem;
  }
  
  .preview-icon {
    font-size: 1.5rem;
  }
}

/* Responsive Design for Blog Detail */
@media (max-width: 992px) {
  .blog-sidebar {
    padding-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
  
  .article-content {
    font-size: 1rem;
  }
  
  .featured-image-placeholder {
    height: 200px;
  }
  
  .call-to-action {
    padding: 1.5rem;
  }
  
  .timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -1.5rem;
  }
  
  .blog-navigation .col-md-6 + .col-md-6 {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .article-header {
    padding-bottom: 1.5rem;
  }
  
  .article-title {
    font-size: 1.75rem;
  }
  
  .breadcrumb-item.active {
    display: none;
  }
  
  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.75rem !important;
  }
  
  .sidebar-widget {
    padding: 1rem;
  }
  
  .community-stats .stat-item {
    margin-bottom: 1rem;
  }
}

/* === Launch Announcement Styles === */

.launch-announcement {
  background: linear-gradient(135deg, rgba(52, 94, 240, 0.15), rgba(88, 166, 255, 0.1));
  border: 2px solid rgba(52, 94, 240, 0.3);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.launch-announcement::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(88, 166, 255, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

.launch-announcement > * {
  position: relative;
  z-index: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.launch-date h3 {
  color: #58a6ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(88, 166, 255, 0.3);
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

.launch-date .text-success {
  color: #28a745 !important;
  font-weight: 600;
  font-size: 1.2rem;
}

@keyframes glow-pulse {
  from {
    text-shadow: 0 0 10px rgba(88, 166, 255, 0.3);
    transform: scale(1);
  }
  to {
    text-shadow: 0 0 20px rgba(88, 166, 255, 0.6);
    transform: scale(1.02);
  }
}

.platform-tagline {
  border-top: 1px solid rgba(52, 94, 240, 0.2);
  border-bottom: 1px solid rgba(52, 94, 240, 0.2);
  padding: 1.5rem 0;
}

.platform-tagline h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tagline-text {
  font-size: 1.3rem;
  color: #e6edf3;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline-text em {
  position: relative;
}

.tagline-text em::before {
  content: '"';
  color: #58a6ff;
  font-size: 1.5rem;
  position: relative;
  top: 0.1em;
}

.tagline-text em::after {
  content: '"';
  color: #58a6ff;
  font-size: 1.5rem;
  position: relative;
  top: 0.1em;
}

/* Christmas Theme Accents */
.launch-date::before {
  content: '🎅';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Launch Announcement */
@media (max-width: 768px) {
  .launch-announcement {
    padding: 1.5rem;
  }
  
  .launch-date h3 {
    font-size: 1.5rem;
  }
  
  .platform-tagline h4 {
    font-size: 1.5rem;
  }
  
  .tagline-text {
    font-size: 1.1rem;
  }
  
  .launch-date::before {
    top: -5px;
    right: 10px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .launch-announcement {
    padding: 1rem;
  }
  
  .launch-date h3 {
    font-size: 1.25rem;
  }
  
  .launch-date .text-success {
    font-size: 1rem;
  }
  
  .platform-tagline h4 {
    font-size: 1.25rem;
  }
  
  .tagline-text {
    font-size: 1rem;
  }
}

/* === Hero Launch Info Styles === */

.launch-info {
  color: #28a745 !important;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(40, 167, 69, 0.3);
  animation: festive-glow 3s ease-in-out infinite alternate;
}

@keyframes festive-glow {
  from {
    text-shadow: 0 1px 3px rgba(40, 167, 69, 0.3);
  }
  to {
    text-shadow: 0 1px 8px rgba(40, 167, 69, 0.6), 0 0 12px rgba(40, 167, 69, 0.3);
  }
}

/* Responsive Launch Info */
@media (max-width: 768px) {
  .launch-info {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .launch-info {
    font-size: 0.95rem;
  }
}
