/* CSS Variables */
:root {
  --oi-black: #000000;
  --oi-orange: #ff6a00;
  --oi-white: #ffffff;
  --oi-gray: #333333;
  --oi-light-gray: #f4f4f4;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: var(--oi-white);
  color: var(--oi-black);
  line-height: 1.6;
  cursor: auto; /* Remove custom cursor */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--oi-black);
  color: var(--oi-white);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--oi-orange);
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--oi-white);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--oi-black) 0%, var(--oi-gray) 100%);
  color: var(--oi-white);
  padding: 120px 0 80px;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--oi-orange);
  color: var(--oi-black);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--oi-light-gray);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--oi-black);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature {
  background-color: var(--oi-white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 3rem;
  color: var(--oi-orange);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature p {
  color: var(--oi-gray);
}

/* Footer */
footer {
  background-color: var(--oi-black);
  color: var(--oi-white);
  padding: 40px 0 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--oi-orange);
  border-radius: 50%;
  color: var(--oi-white);
  text-decoration: none;
}

.icon i {
  font-size: 1.5rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Loading Page Styles */
.loading-body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  color: #ffffff;
  overflow: hidden;
}

.loading-body .gradient-text {
  background: linear-gradient(45deg, #FFC700, #FF8C00, #FF4D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 205, 0, 0.5);
}

.loading-body .fade-out {
  animation: fadeOut 1s ease-in-out forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Links Page Styles */
.links-body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.links-body .gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 199, 0, 0.1) 0%, rgba(255, 140, 0, 0.1) 50%, rgba(255, 77, 0, 0.1) 100%);
  z-index: -1;
}

.links-body .logo {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(255, 199, 0, 0.5));
}

.links-body .title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #FFC700, #FF8C00, #FF4D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-align: center;
}

.links-body .subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  text-align: center;
}

.links-body .social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 1rem;
  margin: 0.5rem 0;
  background: linear-gradient(45deg, #FFC700, #FF8C00, #FF4D00);
  border-radius: 50px;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 199, 0, 0.3);
  border: 2px solid transparent;
}

.links-body .social-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 199, 0, 0.5);
  border-color: rgba(255, 199, 0, 0.8);
}

.links-body .social-button i {
  margin-right: 0.75rem;
  font-size: 1.5rem;
}

.links-body .footer {
  position: absolute;
  bottom: 2rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 0.5s forwards;
}

.links-body .footer-text {
  background: linear-gradient(45deg, #FFC700, #FF8C00, #FF4D00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.links-body .footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.links-body .footer-link:hover {
  color: #FFC700;
}

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

.links-body .content {
  animation: fadeIn 1s ease-in-out;
}

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

  .hero p {
    font-size: 1rem;
  }

  nav ul {
    display: none; /* Simple hide for mobile, could add hamburger later */
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    gap: 0.5rem;
  }

  .icon {
    width: 50px;
    height: 50px;
  }

  .icon i {
    font-size: 1.2rem;
  }

  /* Links page responsive */
  .links-body .title {
    font-size: 2rem;
  }

  .links-body .subtitle {
    font-size: 1rem;
  }

  .links-body .social-button {
    width: 200px;
    font-size: 1rem;
  }

  .links-body .logo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  .logo h1 {
    margin-bottom: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .features h2 {
    font-size: 2rem;
  }

  .feature {
    padding: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .icon i {
    font-size: 1rem;
  }

  /* Links page responsive */
  .links-body .title {
    font-size: 1.5rem;
  }

  .links-body .subtitle {
    font-size: 0.9rem;
  }

  .links-body .social-button {
    width: 180px;
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .links-body .social-button i {
    font-size: 1.2rem;
  }

  .links-body .logo {
    width: 100px;
  }

  .links-body .footer {
    bottom: 1rem;
  }

  .links-body .footer-text {
    font-size: 0.8rem;
  }

  .links-body .footer-link {
    font-size: 0.7rem;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .links-body .title {
    font-size: 1.2rem;
  }

  .links-body .social-button {
    width: 160px;
    font-size: 0.8rem;
  }

  .links-body .logo {
    width: 80px;
  }
}
