@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.container {
  text-align: center;
  max-width: 500px;
  width: 100%;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Social Media Links Container */
.HorizontalLink_Container__A1FNw {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Social Media Link Styling */
.HorizontalLink_Link__dGZy9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  text-decoration: none;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.HorizontalLink_Link__dGZy9::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.HorizontalLink_Link__dGZy9:hover::before {
  opacity: 1;
}

.HorizontalLink_Link__dGZy9:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.HorizontalLink_Link__dGZy9:active {
  transform: translateY(-2px) scale(1.05);
}

/* Individual Social Media Platform Colors */
.HorizontalLink_Link__dGZy9:nth-child(1) {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.HorizontalLink_Link__dGZy9:nth-child(2) {
  background: linear-gradient(135deg, #1da1f2, #0d47a1);
}

.HorizontalLink_Link__dGZy9:nth-child(3) {
  background: linear-gradient(135deg, #ff0050, #000);
}

.HorizontalLink_Link__dGZy9:nth-child(4) {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.HorizontalLink_Link__dGZy9:nth-child(5) {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.HorizontalLink_Link__dGZy9:hover:nth-child(1) {
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.HorizontalLink_Link__dGZy9:hover:nth-child(2) {
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.6);
}

.HorizontalLink_Link__dGZy9:hover:nth-child(3) {
  box-shadow: 0 8px 25px rgba(255, 0, 80, 0.6);
}

.HorizontalLink_Link__dGZy9:hover:nth-child(4) {
  box-shadow: 0 8px 25px rgba(240, 148, 51, 0.6);
}

.HorizontalLink_Link__dGZy9:hover:nth-child(5) {
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

/* SVG Icon Styling */
.HorizontalLink_Link__dGZy9 svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.HorizontalLink_Link__dGZy9:hover svg {
  transform: scale(1.1);
}

/* Footer Styling */
#footer {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  width: 100%;
}

#footer p {
  color: #666;
  font-size: 0.9rem;
  font-weight: 300;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 0.5rem;
  }
  
  .container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .HorizontalLink_Container__A1FNw {
    gap: 1rem;
  }
  
  .HorizontalLink_Link__dGZy9 {
    width: 50px;
    height: 50px;
  }
  
  .HorizontalLink_Link__dGZy9 svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .HorizontalLink_Container__A1FNw {
    gap: 0.8rem;
  }
  
  .HorizontalLink_Link__dGZy9 {
    width: 45px;
    height: 45px;
  }
  
  .HorizontalLink_Link__dGZy9 svg {
    width: 22px;
    height: 22px;
  }
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Focus styles for accessibility */
.HorizontalLink_Link__dGZy9:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Improved hover states */
.HorizontalLink_Link__dGZy9:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  animation: none;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  }
  
  .container {
    background: rgba(44, 62, 80, 0.95);
    color: #ecf0f1;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  h1 {
    color: #ecf0f1;
  }
  
  .subtitle {
    color: #bdc3c7;
  }
  
  #footer p {
    color: #95a5a6;
  }
}