/* 
 * りくらぼ / RikuLab リンク集
 * Design: Neo-Glassmorphism
 * Theme: Deep Ocean Blue with Electric Cyan accents
 */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  background: #0a1628;
  color: #f5f5f5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a52 50%, #0d2847 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 212, 255, 0.2);
  border-top-color: #00D4FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Star Particles Canvas */
#star-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Page Container */
.page-container {
  position: relative;
  min-height: 100vh;
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #1a3a52 50%, #0d2847 100%);
  z-index: 0;
}

.main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

/* Mobile Layout (default) */
.mobile-layout {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.pc-layout {
  display: none;
}

/* Profile Section */
.profile-section {
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.profile-image-wrapper:hover {
  transform: scale(1.05);
}

.profile-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00D4FF, #0066FF);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.profile-image {
  position: relative;
  width: 8rem;
  height: auto;
  border-radius: 50%;
}

.profile-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.gradient-text {
  background: linear-gradient(135deg, #00D4FF, #0066FF, #00D4FF);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.profile-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.subscriber-count {
  color: #00D4FF;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0.25rem;
}

.subscriber-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 255, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 0.5s ease 0.3s forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.badge-pulse {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.pulse-ring {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00D4FF;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-ring.green {
  background: #00FF88;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.pulse-dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #00D4FF;
}

.pulse-dot.green {
  background: #00FF88;
}

.badge-text {
  color: #00D4FF;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-text.green {
  color: #00FF88;
}

/* Link Items */
.link-item {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 255, 0.2));
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-100px);
}

.link-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.link-item:active {
  transform: scale(0.98);
}

.link-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.link-item:hover .link-shine {
  opacity: 1;
  transform: translateX(100%);
}

/* MeshyAI Special Link */
.meshy-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 255, 0.2), rgba(0, 102, 255, 0.2));
  border: 2px solid rgba(0, 255, 136, 0.4);
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideInFromLeft 0.6s ease 2s forwards;
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.meshy-link:hover {
  border-color: rgba(0, 255, 136, 0.7);
  box-shadow: 0 0 40px rgba(197, 249, 85, 0.4);
}

.meshy-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.meshy-logo-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3));
  transition: all 0.3s ease;
}

.meshy-link:hover .meshy-logo-wrapper {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 212, 255, 0.4));
}

.meshy-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.meshy-text {
  flex: 1;
  text-align: left;
}

.meshy-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00FF88;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.meshy-link:hover .meshy-title {
  color: #00FFAA;
}

.meshy-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.meshy-3d {
  flex-shrink: 0;
  margin-right: 0.5rem;
  perspective: 1000px;
}

.text-3d {
  font-size: 1.5rem;
  font-weight: 900;
  color: #00FF88;
  animation: rotate3d 3s linear infinite;
  transform-style: preserve-3d;
  text-shadow: 
    1px 1px 0 rgba(0, 150, 100, 0.8),
    2px 2px 0 rgba(0, 140, 90, 0.7),
    3px 3px 0 rgba(0, 130, 80, 0.6),
    4px 4px 0 rgba(0, 120, 70, 0.5),
    5px 5px 0 rgba(0, 110, 60, 0.4),
    6px 6px 0 rgba(0, 100, 50, 0.3),
    7px 7px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.meshy-link:hover .text-3d {
  color: #00FFAA;
}

@keyframes rotate3d {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  25% { transform: rotateY(90deg) rotateX(15deg); }
  50% { transform: rotateY(180deg) rotateX(0deg); }
  75% { transform: rotateY(270deg) rotateX(-15deg); }
  100% { transform: rotateY(360deg) rotateX(0deg); }
}

.link-arrow {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(0, 255, 136, 0.6);
  transition: all 0.3s ease;
}

.meshy-link:hover .link-arrow {
  color: #00FF88;
  transform: translateX(4px);
}

.meshy-badge {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3));
  border: 1px solid rgba(0, 255, 136, 0.4);
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  animation-delay: calc(2.1s + var(--delay, 0) * 0.1s);
}

.social-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(0, 212, 255, 0.2);
  transition: background 0.3s ease;
}

.social-link:hover .social-icon-wrapper {
  background: rgba(0, 212, 255, 0.3);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.social-label {
  position: relative;
  z-index: 10;
  flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  text-align: left;
}

.social-link:hover .social-label {
  color: white;
}

.link-arrow-small {
  position: absolute;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.social-link:hover .link-arrow-small {
  color: #00D4FF;
  transform: translateX(4px);
}

/* PC Layout */
@media (min-width: 1024px) {
  .mobile-layout {
    display: none;
  }

  .pc-layout {
    display: block;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
  }

  .pc-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }

  .pc-left-column {
    grid-column: span 4;
  }

  .pc-profile-sticky {
    position: sticky;
    top: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInRight 0.8s ease forwards;
  }

  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .pc-profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
  }

  .pc-profile-image-wrapper:hover {
    transform: scale(1.05);
  }

  .profile-glow.large {
    filter: blur(60px);
    opacity: 0.6;
  }

  .pc-profile-image {
    position: relative;
    width: 12rem;
    height: auto;
    border-radius: 50%;
  }

  .pc-profile-name {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .gradient-text.small {
    font-size: 2.25rem;
  }

  .pc-profile-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .subscriber-count.large {
    font-size: 1.5rem;
    margin: 0 0.5rem;
  }

  .subscriber-badge.large {
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
  }

  .badge-pulse.large {
    width: 0.75rem;
    height: 0.75rem;
  }

  .badge-pulse.large .pulse-dot {
    width: 0.75rem;
    height: 0.75rem;
  }

  .badge-text {
    font-size: 1rem;
  }

  .pc-stats {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
  }

  .stat-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.5s forwards;
  }

  .stat-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.6s forwards;
  }

  .stat-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .stat-icon-wrapper.cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 102, 255, 0.3));
  }

  .stat-icon-wrapper.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.3));
  }

  .stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #00D4FF;
  }

  .stat-icon-wrapper.pink .stat-icon {
    color: #EC4899;
  }

  .stat-content {
    flex: 1;
  }

  .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
  }

  .stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
  }

  .pc-right-column {
    grid-column: span 8;
  }

  .pc-meshy-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 2s forwards;
  }

  .pc-meshy-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3));
    transition: all 0.3s ease;
  }

  .pc-meshy-link:hover .pc-meshy-logo-wrapper {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 212, 255, 0.4));
  }

  .pc-meshy-content {
    flex: 1;
  }

  .pc-meshy-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .meshy-title.large {
    font-size: 1.5rem;
  }

  .meshy-3d.large {
    perspective: 1000px;
  }

  .text-3d.large {
    font-size: 1.875rem;
  }

  .meshy-badge.inline {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
  }

  .badge-pulse.small {
    width: 0.5rem;
    height: 0.5rem;
  }

  .badge-pulse.small .pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .badge-text.green {
    font-size: 0.75rem;
  }

  .meshy-subtitle.large {
    font-size: 1rem;
  }

  .link-arrow.large {
    width: 2rem;
    height: 2rem;
  }

  .pc-meshy-link:hover .link-arrow.large {
    transform: translateX(8px);
  }

  .pc-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pc-social-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }

  .pc-social-link:nth-child(1) { animation: fadeInUp 0.6s ease 2.1s forwards; }
  .pc-social-link:nth-child(2) { animation: fadeInUp 0.6s ease 2.2s forwards; }
  .pc-social-link:nth-child(3) { animation: fadeInUp 0.6s ease 2.3s forwards; }
  .pc-social-link:nth-child(4) { animation: fadeInUp 0.6s ease 2.4s forwards; }
  .pc-social-link:nth-child(5) { animation: fadeInUp 0.6s ease 2.5s forwards; }
  .pc-social-link:nth-child(6) { animation: fadeInUp 0.6s ease 2.6s forwards; }

  .pc-social-link:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  }

  .pc-social-link .social-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
  }

  .pc-social-link:hover .social-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
  }

  .pc-contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 255, 0.2));
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 1rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 2.7s forwards;
    margin-top: 1.5rem;
  }

  .pc-contact-button:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  }

  .contact-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    transition: background 0.3s ease;
  }

  .pc-contact-button:hover .contact-icon-wrapper {
    background: rgba(0, 212, 255, 0.3);
  }

  .contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #00D4FF;
  }

  .contact-label {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
  }

  .pc-contact-button:hover .contact-label {
    color: white;
  }
}

/* Footer */
.footer {
  margin-top: 4rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.5s ease 1s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.footer-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
}

.footer-profile-image {
  width: 2rem;
  height: auto;
  border-radius: 50%;
}

.footer-text {
  text-align: left;
}

.footer-description {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-subdescription {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1.5rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  background: linear-gradient(135deg, #1a3a52, #0d2847);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.modal-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.modal-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateX(4px);
}

.modal-option-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: rgba(0, 212, 255, 0.2);
}

.modal-option-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #00D4FF;
}

.modal-option-text {
  flex: 1;
}

.modal-option-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.modal-option-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 102, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.toast-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.5);
}
