/* live.css - Live stream page styling with mobile-first responsive design */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Arial', sans-serif;
  background: #000;
  color: #f5f5f5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Device-specific optimizations */
[data-device="mobile"] {
  font-size: 14px;
}

[data-orientation="landscape"] .live-container {
  margin-top: 50px;
  padding: 0.5rem;
}

[data-orientation="portrait"] .live-container {
  padding: 1rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #181818;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  height: auto;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f805a7;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo a {
  color: #f805a7;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
  margin: 0 1rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #0bd0f3;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: #f805a7;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #0bd0f3;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.nav-toggle:active {
  color: #f805a7;
}

/* Main Container */
.live-container {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 2rem;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Stream Status */
.stream-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(24, 24, 24, 0.8);
  border-radius: 8px;
  width: fit-content;
  border-left: 3px solid;
  border-left-color: #ff0000;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.status-indicator.live {
  background: #00ff00;
  box-shadow: 0 0 10px #00ff00;
  border-left-color: #00ff00 !important;
}

.status-indicator.offline {
  background: #ff0000;
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-text {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.stream-status .status-text.live {
  color: #00ff00;
}

.stream-status .status-text.offline {
  color: #ff0000;
}

/* Content Layout */
.live-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

/* Video Section */
.video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 208, 243, 0.2);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
  touch-action: manipulation;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Offline Placeholder */
.offline-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 208, 243, 0.1), rgba(248, 5, 167, 0.1));
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.offline-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.offline-placeholder h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}

.offline-placeholder p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

.schedule-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(11, 208, 243, 0.1);
  border-left: 3px solid #0bd0f3;
  border-radius: 4px;
  max-width: 100%;
}

.schedule-info p {
  color: #0bd0f3;
  font-size: 0.95rem;
  margin: 0;
}

/* Stream Info Bar */
.stream-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(24, 24, 24, 0.8);
  border-radius: 8px;
  gap: 1rem;
  flex-wrap: wrap;
}

.stream-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 150px;
}

.stream-title h3 {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin: 0;
  word-break: break-word;
}

.viewer-count {
  font-size: 0.9rem;
  color: #0bd0f3;
}

.stream-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.action-btn {
  background: rgba(11, 208, 243, 0.2);
  border: 1px solid #0bd0f3;
  color: #0bd0f3;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; /* Touch target size */
  min-height: 44px;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.action-btn:hover,
.action-btn:focus {
  background: rgba(11, 208, 243, 0.3);
  box-shadow: 0 0 10px rgba(11, 208, 243, 0.3);
  outline: none;
}

.action-btn:active {
  transform: scale(0.95);
}

/* Settings Panel */
.settings-panel {
  background: rgba(24, 24, 24, 0.95);
  border: 1px solid #0bd0f3;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
  animation: slideDown 0.3s ease;
  max-width: 100%;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(11, 208, 243, 0.2);
  padding-bottom: 1rem;
}

.settings-header h4 {
  font-size: 1rem;
  margin: 0;
  color: #f5f5f5;
}

.close-btn {
  background: none;
  border: none;
  color: #0bd0f3;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.close-btn:hover {
  color: #f805a7;
}

.settings-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.setting-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
  touch-action: manipulation;
}

.setting-item:hover {
  background: rgba(11, 208, 243, 0.1);
}

.setting-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0bd0f3;
}

.setting-item span {
  color: #f5f5f5;
  font-size: 0.95rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
}

.volume-control label {
  white-space: nowrap;
  color: #f5f5f5;
}

.volume-control input[type="range"] {
  flex: 1;
  cursor: pointer;
  accent-color: #0bd0f3;
  min-width: 100px;
}

/* Footer */
.site-footer {
  background: #181818;
  border-top: 1px solid rgba(11, 208, 243, 0.2);
  margin-top: auto;
  padding: 2rem 0;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left,
.footer-right {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-left a {
  color: #f805a7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-left a:hover {
  color: #0bd0f3;
}

.footer-left img {
  height: 25px;
  width: auto;
}

.footer-link {
  color: #0bd0f3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #f805a7;
}

/* Theater Mode */
.live-content.theater-mode {
  grid-template-columns: 1fr;
  gap: 0;
}

.live-content.theater-mode .chat-section {
  display: none;
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
  .nav-container {
    padding: 0 2rem;
  }

  .live-container {
    padding: 2rem;
    margin-top: 80px;
  }

  .stream-info {
    flex-wrap: nowrap;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
    min-height: 400px;
  }
}

/* Responsive Design - Tablet (481px to 1024px) */
@media (max-width: 1024px) {
  .live-content {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design - Large Tablets & Medium Screens (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
    font-size: 0.95rem;
  }

  .live-container {
    padding: 1.5rem;
  }

  .video-wrapper {
    min-height: 350px;
  }

  .action-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
  }
}

/* Responsive Design - Mobile (480px to 768px) */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  nav {
    padding: 0.5rem 0;
  }

  .nav-container {
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #181818;
    width: 100%;
    padding: 1rem;
    gap: 0;
    margin: 0;
    z-index: 999;
    border-top: 1px solid rgba(11, 208, 243, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(11, 208, 243, 0.1);
  }

  .nav-toggle {
    display: block;
  }

  .live-container {
    margin-top: 70px;
    padding: 1rem;
    gap: 1rem;
  }

  .stream-status {
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .status-indicator {
    width: 10px;
    height: 10px;
  }

  .video-wrapper {
    aspect-ratio: auto;
    max-height: 300px;
    border-radius: 8px;
  }

  .offline-placeholder {
    padding: 1.5rem;
    min-height: 250px;
  }

  .offline-placeholder h2 {
    font-size: 1.4rem;
  }

  .offline-icon {
    font-size: 2.5rem;
  }

  .stream-info {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .stream-title {
    min-width: auto;
  }

  .stream-title h3 {
    font-size: 1rem;
  }

  .viewer-count {
    font-size: 0.85rem;
  }

  .stream-actions {
    width: 100%;
    justify-content: space-around;
    gap: 0.5rem;
  }

  .action-btn {
    flex: 1;
    padding: 0.6rem 0.4rem;
    font-size: 0.85rem;
    min-height: 40px;
  }

  .settings-panel {
    padding: 1rem;
    margin-top: 0.75rem;
  }

  .settings-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .settings-header h4 {
    font-size: 0.95rem;
  }

  .volume-control {
    gap: 0.5rem;
  }

  .volume-control input[type="range"] {
    min-width: 80px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    justify-content: center;
  }
}

/* Responsive Design - Small Mobile (up to 480px) */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  nav {
    padding: 0.4rem 0;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 35px;
  }

  .live-container {
    margin-top: 60px;
    padding: 0.5rem;
    gap: 0.75rem;
    min-height: calc(100vh - 60px);
  }

  .stream-status {
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .status-indicator {
    width: 8px;
    height: 8px;
  }

  .video-wrapper {
    aspect-ratio: auto;
    max-height: 250px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(11, 208, 243, 0.15);
  }

  .offline-placeholder {
    padding: 1rem;
    min-height: 220px;
  }

  .offline-placeholder h2 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .offline-placeholder p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .offline-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .schedule-info {
    padding: 0.75rem;
    margin-top: 0.75rem;
  }

  .stream-info {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.6rem;
    border-radius: 6px;
  }

  .stream-title {
    width: 100%;
  }

  .stream-title h3 {
    font-size: 0.95rem;
  }

  .viewer-count {
    font-size: 0.8rem;
  }

  .stream-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.25rem;
  }

  .action-btn {
    flex: 1;
    padding: 0.4rem 0.2rem;
    font-size: 0.75rem;
    min-width: 40px;
    min-height: 40px;
    border-radius: 4px;
  }

  .action-btn span {
    line-height: 1;
  }

  .settings-panel {
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 6px;
  }

  .settings-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .settings-header h4 {
    font-size: 0.9rem;
  }

  .close-btn {
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
  }

  .settings-content {
    gap: 0.75rem;
  }

  .setting-item {
    padding: 0.4rem;
    gap: 0.5rem;
  }

  .setting-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .setting-item span {
    font-size: 0.9rem;
  }

  .volume-control {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .volume-control label {
    font-size: 0.9rem;
  }

  .volume-control input[type="range"] {
    width: 100%;
    min-width: auto;
  }

  .site-footer {
    padding: 1.5rem 0;
    margin-top: 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-left p,
  .footer-left a {
    font-size: 0.8rem;
  }

  .footer-left img {
    height: 20px;
  }

  .footer-link {
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
  html {
    font-size: 12px;
  }

  .live-container {
    padding: 0.25rem;
    gap: 0.5rem;
  }

  .video-wrapper {
    max-height: 200px;
  }

  .stream-info {
    padding: 0.5rem;
    gap: 0.25rem;
  }

  .stream-title h3 {
    font-size: 0.9rem;
  }

  .action-btn {
    padding: 0.35rem 0.2rem;
    font-size: 0.7rem;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  nav {
    height: auto;
  }

  .live-container {
    margin-top: 50px;
    padding: 0.5rem;
    min-height: calc(100vh - 50px);
  }

  .video-wrapper {
    max-height: 85vh;
    aspect-ratio: auto;
  }

  .stream-info {
    padding: 0.5rem;
  }

  .settings-panel {
    max-height: 200px;
    overflow-y: auto;
  }

  .site-footer {
    position: relative;
  }
}

/* High DPI screens (Retina displays) */
@media (min-device-pixel-ratio: 2) {
  .status-indicator {
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
  }

  .action-btn {
    border-width: 1.5px;
  }
}

/* Print styles */
@media print {
  nav,
  .site-footer,
  .stream-actions,
  .settings-panel {
    display: none;
  }

  .live-container {
    margin: 0;
    padding: 0;
  }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .status-indicator {
    animation: none;
  }

  .offline-icon {
    animation: none;
  }
}

/* Dark mode preference (already dark, but for consistency) */
@media (prefers-color-scheme: dark) {
  body {
    background: #000;
  }
}

/* Light mode not needed for this site */
@media (prefers-color-scheme: light) {
  body {
    background: #000;
    color: #f5f5f5;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #181818;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f805a7;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo a {
  color: #f805a7;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #0bd0f3;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #0bd0f3;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Main Container */
.live-container {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

/* Stream Status */
.stream-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(24, 24, 24, 0.8);
  border-radius: 8px;
  width: fit-content;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-indicator.live {
  background: #00ff00;
  box-shadow: 0 0 10px #00ff00;
}

.status-indicator.offline {
  background: #ff0000;
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-text {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.stream-status .status-text.live {
  color: #00ff00;
}

.stream-status .status-text.offline {
  color: #ff0000;
}

/* Content Layout */
.live-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Video Section */
.video-section {
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 208, 243, 0.2);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Offline Placeholder */
.offline-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 208, 243, 0.1), rgba(248, 5, 167, 0.1));
  text-align: center;
  padding: 2rem;
}

.offline-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.offline-placeholder h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #f5f5f5;
}

.offline-placeholder p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

.schedule-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(11, 208, 243, 0.1);
  border-left: 3px solid #0bd0f3;
  border-radius: 4px;
}

.schedule-info p {
  color: #0bd0f3;
  font-size: 0.95rem;
}

/* Stream Info Bar */
.stream-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(24, 24, 24, 0.8);
  border-radius: 8px;
  margin-top: 1rem;
}

.stream-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stream-title h3 {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin: 0;
}

.viewer-count {
  font-size: 0.9rem;
  color: #0bd0f3;
}

.stream-actions {
  display: flex;
  gap: 0.75rem;
}

.action-btn {
  background: rgba(11, 208, 243, 0.2);
  border: 1px solid #0bd0f3;
  color: #0bd0f3;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.action-btn:hover {
  background: rgba(11, 208, 243, 0.3);
  box-shadow: 0 0 10px rgba(11, 208, 243, 0.3);
}

/* Footer */
.site-footer {
  background: #181818;
  border-top: 1px solid rgba(11, 208, 243, 0.2);
  margin-top: 4rem;
  padding: 2rem 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left,
.footer-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-left p {
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-left a {
  color: #f805a7;
  text-decoration: none;
  font-weight: 600;
}

.footer-left a:hover {
  color: #0bd0f3;
}

.footer-link {
  color: #0bd0f3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #f805a7;
}
