/* Specific styles for contact.html */
.contact-section {
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: #f5f5f5;
   padding: 100px 20px;
   background: url('your-gaming-background.jpg') no-repeat center center/cover;
   min-height: 100vh;
   animation: fadeIn 1.5s ease-in-out;
}

.content {
   max-width: 800px;
   padding: 20px;
   background: rgba(11, 12, 16, 0.8);
   border-radius: 10px;
   animation: fadeInUp 2s ease-in-out;
}

.content h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
   animation: slideInDown 1s ease-in-out;
}

.content p {
   font-size: 1.5rem;
   margin-bottom: 2rem;
   animation: slideInUp 1s ease-in-out;
}

.content a {
   color: #fcbe2a;
   text-decoration: none;
   transition: color 0.3s;
}

.content a:hover {
   color: #fcbe2a;
}

/* Responsive styles */
@media (max-width: 768px) {
   .contact-section {
       padding: 50px 10px;
   }

   .content {
       padding: 10px;
   }

   .content h1 {
       font-size: 2rem;
   }

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