/* =========================
   Global Styles
   ========================= */
body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #000000);
  overflow-x: hidden;
  color: #fff;


    /* Animated gradient background */
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #000000, #1a1a1a, #0f0f0f);
    background-size: 300% 300%;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



/* =========================
   Navigation Bar
   ========================= */
.horizontal-nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
  scrollbar-width: none;
}

.horizontal-nav::-webkit-scrollbar { display: none; }

.nav-list {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.nav-list li { display: flex; }

.nav-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  color: #f0f0f0;
}

.nav-list a:hover {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(60deg, #be2edd, #00a8ff, #F79F1F);
  background-clip: text;
  box-shadow: 0 0 10px rgba(50, 242, 248, 0.3);
}

.nav-list img {
  margin-right: 8px;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
}

.nav-list a i {
  margin-right: 8px;
  font-size: 20px;
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.nav-list a:hover i {
  color: #32f2f8; /* optional gradient effect handled via text above */
}


/* === Glassy Section Boxes === */
section#contact, section#contacts {
    background: rgba(40, 40, 40, 0.45);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border-radius: 15px;
    padding: 40px;
    margin: 50px auto;
    max-width: 900px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    animation: fadeUp 1s ease forwards;
    transform: translateY(30px);
    opacity: 0;
}

section#contact { animation-delay: 0.2s; }
section#contacts { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { transform: translateY(0); opacity: 1; }
}

/* Headings */
section#contact h2, section#contacts h3 {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.25);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center; /* center align headings too */
}

/* Remove underline + default link colors globally */
a, a:visited, a:active {
    text-decoration: none;
    color: inherit;
    outline: none;
}

/* === Center the icon groups === */
.socials, 
.streaming-platforms {
    display: flex;
    justify-content: center;  /* center horizontally */
    gap: 25px;               /* spacing between icons */
    margin-top: 20px;
}

/* === Base Icon Style === */
.socials .social-link, 
.streaming-platforms .social-link {
    font-size: 32px;
    transition: transform 0.4s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* === Social Media Colors === */
.socials .social-link:nth-child(1) { color: #C13584; } /* Instagram */
.socials .social-link:nth-child(2) { color: #0285FF; } /* Bluesky */
.socials .social-link:nth-child(3) { color: #FF424D; } /* Patreon */
.socials .social-link:nth-child(4) { color: #ffffff; } /* GitHub */

/* === Streaming Platforms Colors === */
.streaming-platforms .social-link:nth-child(1) { color: #9146FF; } /* Twitch */
.streaming-platforms .social-link:nth-child(2) { color: #FF0000; } /* YouTube */
.streaming-platforms .social-link:nth-child(3) { color: #52F000; } /* Kick */

/* === Hover Effect (glow + enlarge) === */
.socials .social-link:hover, 
.streaming-platforms .social-link:hover {
    transform: scale(1.25) rotate(8deg);
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}


/* --- Footer Styles --- */
.site-footer {
    position: relative;
    padding: 20px 40px;
    margin-top: 40px;
    background: linear-gradient(145deg, rgba(28, 28, 28, 0.8), rgba(34, 34, 34, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease-in-out;
    border-radius: 15px 15px 0 0;
}

.site-footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6), 0 -2px 10px rgba(84, 238, 199, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-content p {
    margin: 0;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(84, 238, 199, 0.6);
}

/* --- Responsive Design for Footer --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
