body {
    font-family: 'Inter', sans-serif;
    background-color: #0d0f1a;
    color: #e2e8f0;
    margin: 0;
    overflow-x: hidden;
  }
  html {
    scroll-behavior: smooth;
  }
  /* Animated Gradient Header */
  header.gradient-bg {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: linear-gradient(135deg, #4c2b6f, #8a2be2, #e91e63);
    color: white;
    text-align: center;
  }
  header.gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: moveGradient 15s infinite linear;
  }
  @keyframes moveGradient {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
  }
  /* Layout */
  .container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .text-center {
    text-align: center;
  }
  .py-16 {
    padding: 4rem 0;
  }
  .p-8 {
    padding: 2rem;
  }
  .mb-4 {
    margin-bottom: 1rem;
  }
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  .mb-8 {
    margin-bottom: 2rem;
  }
  .mb-16 {
    margin-bottom: 4rem;
  }
  .mt-6 {
    margin-top: 1.5rem;
  }
  .mt-4 {
    margin-top: 1rem;
  }
  /* Typography */
  h1 {
    font-size: 3.5rem;
    font-weight: 700;
  }
  h2 {
    font-size: 2rem;
    font-weight: 700;
  }
  h3 {
    font-size: 1.25rem;
    font-weight: 600;
  }
  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .text-lg {
    font-size: 1.125rem;
  }
  .text-sm {
    font-size: 0.875rem;
  }
  .font-bold {
    font-weight: 700;
  }
  .font-semibold {
    font-weight: 600;
  }
  .font-medium {
    font-weight: 500;
  }
  /* Utilities */
  .rounded {
    border-radius: 0.5rem;
  }
  .rounded-lg {
    border-radius: 0.75rem;
  }
  .rounded-xl {
    border-radius: 1rem;
  }
  .rounded-2xl {
    border-radius: 1.5rem;
  }
  .shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .btnButton {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
  }
  .cool-card {
    color: #1e293b;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
  }

  /* Developer Card */
  .dev-card {
    background: #f9fafb;
    color: #1e293b;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
  }
  .dev-card h3 {
    margin: 0.5rem 0;
  }
  .dev-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .dev-card .btnButton {
    background: #2563eb;
    color: white;
  }
  /* Virtual Reality Card */
  .vr-card {
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
  }
  .vr-card h3 {
    margin: 0.5rem 0;
  }
  .vr-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .vr-card .btnButton {
    background: #3b82f6;
    color: white;
  }
  .vr-card .btnButton:disabled {
    background: #4b5563;
    cursor: not-allowed;
  }
  /* Cards */
  .card-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  /* Gradient Divider */
  .gradient-hr {
    display: flex;
    align-items: center;
    margin: 3rem 0;
    padding: 0 24px;
    background: #0d0f1a;
  }
  .gradient-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #8a2be2, #e91e63, transparent);
  }
.hr-text {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0 1rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 5px #8a2be2, 0 0 10px #e91e63;
  display: flex; /* Make it a flex container */
  flex-direction: column; /* Stack children vertically */
  align-items: center; /* Center children horizontally */
}
  /* Grid */
  .grid {
    display: grid;
    gap: 1.5rem;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  @media (max-width: 768px) {
    .grid-5,
    .grid-4,
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .grid-5,
    .grid-4,
    .grid-2 {
      grid-template-columns: 1fr;
    }
  }
  /* Footer */
  footer {
    background: #111827;
    color: white;
    padding: 4rem 0;
  }
  footer h3,
  footer h4 {
    margin-bottom: 1rem;
  }
  footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
  }
  footer a:hover {
    color: white;
  }
  footer .connect a {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  footer .border-top {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    margin-top: 2rem;
    color: #9ca3af;
    font-size: 0.875rem;
  }
  /* Additions for Blogging Fun Section to match image */
  .blog-card {
    background: linear-gradient(to right, #fbbf24, #f97316);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .blog-card h2,
  .blog-card p {
    position: relative;
    z-index: 1;
  }
  /* Style 1: Cosmic Twilight */
  .blog-card.cosmic-twilight {
    background: linear-gradient(135deg, #1a0033, #330066, #6600cc);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card.cosmic-twilight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Style 2: Neon Sunrise */
  .blog-card.neon-sunrise {
    background: linear-gradient(135deg, #ff4500, #ff8c00, #ffd700);
    color: #1a1a1a;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card.neon-sunrise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
  }
  /* Style 3: Ocean Depths */
  .blog-card.ocean-depths {
    background: linear-gradient(135deg, #006666, #008080, #00cccc);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card.ocean-depths::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Style 4: Forest Glow */
  .blog-card.forest-glow {
    background: linear-gradient(135deg, #006400, #228b22, #9acd32);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card.forest-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  /* Style 5: Aurora Borealis */
  .blog-card.aurora-borealis {
    background: linear-gradient(135deg, #00b7eb, #9b59b6, #e74c3c);
    color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card.aurora-borealis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  /* Style 6: Desert Sunset */
  .blog-card.desert-sunset {
    background: linear-gradient(135deg, #ff6f61, #ff9a5a, #ffd54f);
    color: #1a1a1a;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }
  .blog-card.desert-sunset::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .gap-8 {
    gap: 2rem;
  }
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  .post-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
  }
  .post-link {
    color: #3b82f6;
    text-decoration: none;
  }
  .post-link:hover {
    text-decoration: underline;
  }
  .text-blue-600 {
    color: #2563eb;
  }
  .flex {
    display: flex;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .newsletter-btn {
    background: white;
    color: #ea580c;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
  }
  .newsletter-btn:hover {
    background: #f3f4f6;
  }
  .opacity-90 {
    opacity: 0.9;
  }
  .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  @media (min-width: 768px) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  /* Container for the entire exhibition section */
  .online-art-exhibition {
    background: linear-gradient(to right, #6EE7B7, #3B82F6, #9333EA);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: sans-serif;
    gap: 1rem;
  }
  /* Header section */
  .online-art-exhibition > h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
  }
  .online-art-exhibition > p {
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 300;
  }
  /* Gallery container */
  .gallery {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  /* Individual artwork card */
  .artwork-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 150px;
  }
  .artwork-card > div {
    width: 100%;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  .artwork-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .artwork-card p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
  }
  /* Button */
  .online-art-exhibition button {
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s;
  }
  .online-art-exhibition button:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .online-art-exhibition button a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  .btn {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    background: linear-gradient(to right, #6EE7B7, #3B82F6, #9333EA);
    text-align: center;
  }
  .text-white {
    color: #e2e8f0;
  }
  .text-gray-900 {
    color: #111827;
  }
  .text-gray-400 {
    color: #9ca3af;
  }
  .bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
  }
  .from-purple-600 {
    --tw-gradient-from: #9333ea;
  }
  .to-pink-600 {
    --tw-gradient-to: #db2777;
  }
  .p-6 {
    padding: 1.5rem;
  }
  .p-4 {
    padding: 1rem;
  }
  .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .space-x-2 > :not([hidden])~:not([hidden]) {
    margin-left: 0.5rem;
  }
  .w-full {
    width: 100%;
  }
  .min-h-\[100px\] {
    min-height: 100px;
  }
  .transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  .hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
  }
  .bg-white {
    background-color: #fff;
  }
  .bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .h-12 {
    height: 3rem;
  }
  .ai-loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .hidden {
    display: none;
  }
  @media (min-width: 768px) {
    .md\:flex-row {
      flex-direction: row;
    }
    .md\:w-2\/3 {
      width: 66.666667%;
    }
    .md\:w-1\/3 {
      width: 33.333333%;
    }
  }
.radio-section {
  margin-top: 64px;
  margin-bottom: 64px;
}

.radio-card {
  background: linear-gradient(135deg, #ec4899 0%, #ef4444 100%);
  border-radius: 16px;
  padding: 32px;
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.radio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.radio-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.radio-description {
  margin-bottom: 32px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.player-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.now-playing-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.track-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 0.8;
}

.track-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.track-artist,
.track-meta {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 2px;
}

.track-meta a {
  color: #ffffff;
  text-decoration: underline;
}

.license-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.license-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.license-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.music-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.control-btn {
  background: white;
  color: #ec4899;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.control-btn:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

.prev-btn,
.next-btn,
.mute-btn {
  width: 48px;
  height: 48px;
}

.play-btn {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.progress-container {
  flex: 1;
  margin: 0 16px;
  cursor: pointer;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  height: 8px;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  background: white;
  border-radius: 9999px;
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}

.time-display {
  font-size: 0.75rem;
  margin-top: 4px;
  opacity: 0.8;
  text-align: right;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.stat-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .radio-card {
    padding: 24px;
    border-radius: 0; 
  }
  .radio-title {
    font-size: 1.5rem;
  }
  .now-playing-info {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .progress-container {
    order: 3;
    width: 100%;
    margin: 16px 0 0 0;
  }
  .license-section {
    flex-direction: column;
    align-items: flex-start;
  }  
  .blog-card.forest-glow,
  .blog-card.cosmic-twilight,
  .blog-card.ocean-depths,
  .blog-card,
  .dev-card,
  .cool-card,
  .online-art-exhibition {
    border-radius: 0;
  }
}