/* Base Styles */
:root {
  --bg-color: #121212;
  --card-color: #1e1e1e;
  --accent-color: #333333;
  --text-color: #ffffff;
  --highlight-color: #555555;
  --border-radius: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  padding: 20px;
  line-height: 1.5;
}

/* Main Layout */
.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 40px);
}

.content-card {
  background-color: var(--card-color);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo Styles */
.logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Typography */
h1 {
  margin: 10px 0 30px;
  font-size: 34px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  letter-spacing: 0.5px;
}

h3 {
  margin: 25px 0 18px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

/* Section and Button Styles */
.section {
  margin-bottom: 28px;
}

.link-btn {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--accent-color);
  padding: 15px 25px;
  margin: 14px 0;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  border: none;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.link-btn:hover {
  background-color: var(--highlight-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.link-btn:active {
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }
  
  .content-card {
    padding: 30px 20px;
    border-radius: 12px;
  }
  
  .logo {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  h3 {
    font-size: 18px;
    margin: 20px 0 15px;
  }
  
  .link-btn {
    padding: 14px 20px;
    font-size: 15px;
    margin: 12px 0;
  }
}

@media (max-width: 400px) {
  .logo {
    width: 120px;
    height: 120px;
  }
  
  h1 {
    font-size: 26px;
  }
  
  .link-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* Social Icons - Improved */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: -10px 0 25px 0;
  padding: 10px 0;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  transition: all 0.3s ease;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  text-decoration: none !important; /* This removes underline */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .social-icons {
    gap: 14px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    font-size: 16px;
    width: 34px;
    height: 34px;
  }
}