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

body {
  background-color: #1b1b2f; /* Dark cosmic background */
  color: #e0e0e0; /* Light gray text */
  font-family: 'Roboto', sans-serif; /* Modern, clean font */
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  background: #2a2a3d; /* Slightly lighter background for the content area */
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7); /* Soft shadow for depth */
  padding: 20px;
}

header .logo {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.title {
  font-size: 2.5rem;
  color: #00ccff; /* Bright cyan for the title */
  margin-bottom: 20px;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  padding: 0 20px;
}

.subscribe {
  margin-bottom: 40px;
}

.subscribe h2 {
  font-size: 1.5rem;
  color: #00ccff;
  margin-bottom: 20px;
}

.platform-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.platform-button {
  display: inline-block;
  width: 50px;
  height: 50px;
  transition: transform 0.3s, filter 0.3s;
}

.platform-button img {
  width: 100%;
  height: 100%;
  filter: ; /* Inverts colors for a clean, white look */
}

.platform-button:hover img {
  filter: brightness(1) saturate(2) drop-shadow(0 0 10px #00ccff); /* Adds a cyan glow on hover */
  transform: scale(1.15); /* Slightly enlarges icon on hover */
}

footer {
  margin-top: 20px;
  font-size: 1rem;
  color: #c0c0ff;
}

footer .social-links {
  margin-top: 10px;
}

footer .social-links a {
  color: #00ccff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s, text-shadow 0.3s;
}

footer .social-links a:hover {
  color: #0099cc;
  text-shadow: 0 0 5px #00ccff;
}

footer .contact a {
  color: #00ccff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s, text-shadow 0.3s;
}

/* Nav */

.floating-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(27, 27, 47, 0.8);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.1);
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 204, 255, 0.3),
        transparent
    );
    margin: 5px 0;
}

.nav-button {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(0, 204, 255, 0.3);
    background: rgba(0, 204, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ccff;
    text-decoration: none;
}

.nav-button:hover {
    background: rgba(0, 204, 255, 0.2);
    border-color: rgba(0, 204, 255, 0.8);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.3);
}

.nav-button.social {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.nav-button svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.nav-button.social svg {
    width: 24px;
    height: 24px;
}

.nav-tooltip {
    position: absolute;
    left: 70px;
    background: rgba(27, 27, 47, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 204, 255, 0.2);
}

.nav-button:hover .nav-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Glowing animation */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 204, 255, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 204, 255, 0.5); }
    100% { box-shadow: 0 0 5px rgba(0, 204, 255, 0.3); }
}

.nav-button:active {
    transform: translateX(2px);
    animation: glow 0.5s ease-in-out;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .floating-nav {
        position: fixed;
        left: 0;
        top: auto;
        bottom: 0;
        transform: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        border-radius: 15px 15px 0 0;
        padding: 10px;
    }

    .nav-section {
        flex-direction: row;
        gap: 5px;
    }

    .nav-divider {
        width: 1px;
        height: 40px;
        margin: 0 1px;
        background: linear-gradient(
            180deg,
            transparent,
            rgba(0, 204, 255, 0.3),
            transparent
        );
    }

    .nav-button {
        width: 45px;
        height: 45px;
    }

    .nav-button.social {
        width: 45px;
        height: 45px;
    }

    .nav-tooltip {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        top: -40px;
        bottom: auto;
    }

    .nav-button:hover {
        transform: translateY(-5px);
    }

    .nav-button:hover .nav-tooltip {
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .platform-button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.7rem;
  }

  .description {
    font-size: 0.9rem;
  }
}
