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

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-weight: bold;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('gaming-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.app-logo {
  max-width: 150px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
.heading-logo {
  width: 50px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  vertical-align: middle; /* Align with the text */
  margin-right: 10px; /* Add space between the logo and the text */
}

.hero-content h1 {
  font-size: 3em;
  margin-bottom: 10px;
  animation: slideDown 1.5s ease-out;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  animation: slideUp 1.5s ease-out;
}

.hero .btn {
  background: #ff4500;
  color: white;
  padding: 10px 20px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
  animation: fadeInUp 2s ease-in-out;
}

.hero .btn:hover {
  background: #e63e00;
  transform: scale(1.05);
}

.hero .btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.hero .btn:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* Features Section */
.features {
  padding: 40px 20px;
  text-align: center;
  background: #222;
}

.features h2 {
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 2s ease-in-out;
}

.feature-card {
  flex: 1 1 30%;
  background: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: scaleIn 1.5s ease-out;
}

.feature-card:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.feature-card i {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #ff4500;
  animation: bounce 2s infinite;
}

.feature-card h3 {
  margin-bottom: 10px;
}

/* Download Section */
.download {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(90deg, #ff4500, #e63e00);
  animation: gradientShift 5s infinite ease-in-out;
}

.download h2 {
  margin-bottom: 10px;
}

.download p {
  margin-bottom: 20px;
}

.download .btn {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}

.download .btn:hover {
  background: #222;
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 10px;
  background: #111;
}

.footer-logo {
  max-width: 100px;
  display: block;
  margin: 0 auto 10px;
  animation: fadeIn 2s ease-in-out;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.5em;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #ff4500;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0% {
    background: linear-gradient(90deg, #ff4500, #e63e00);
  }
  50% {
    background: linear-gradient(90deg, #e63e00, #ff6a00);
  }
  100% {
    background: linear-gradient(90deg, #ff4500, #e63e00);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}