:root {
  /* Premium Color Palette */
  --black: #121212;
  --dark-gray: #1E1E1E;
  --gold: #D4AF37;
  --light-gold: #F0E6C2;
  --brown: #8B6B4A;
  --light-brown: #B59D7B;
  --white: #F5F5F5;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Titillium Web', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--dark-gray);
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--white);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown));
}

.section-subtitle {
  color: var(--light-gold);
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background-color: var(--light-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  text-align: center;
}

.loader-inner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--brown);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--gold);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-pattern.png') center/cover no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--gold);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Game Card */
.game-card {
  background-color: var(--dark-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.game-thumbnail {
  position: relative;
  overflow: hidden;
}

.game-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover .game-thumbnail img {
  transform: scale(1.05);
}

.game-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.game-info {
  padding: 20px;
}

.game-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.game-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.genre {
  background-color: rgba(139, 107, 74, 0.2);
  color: var(--light-brown);
  padding: 3px 10px;
  border-radius: 20px;
}

.platform i {
  margin-left: 8px;
  color: var(--light-gold);
}

.game-info p {
  margin-bottom: 20px;
  color: var(--light-gold);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* App Card */
.app-card {
  background-color: var(--dark-gray);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.app-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.app-card:hover .app-icon {
  background-color: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.app-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.app-card p {
  margin-bottom: 20px;
  color: var(--light-gold);
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.app-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

.app-links a:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* Services Tabs */
.services-tabs {
  margin-top: 50px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid var(--brown);
  color: var(--light-brown);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--brown);
  color: var(--light-gold);
  border-color: var(--gold);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-details {
  display: flex;
  gap: 40px;
  align-items: center;
}

.service-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-info p {
  margin-bottom: 20px;
  color: var(--light-gold);
}

.service-features {
  margin-bottom: 30px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-gold);
}

.service-features i {
  color: var(--gold);
}

/* About Section */
.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-info {
  flex: 1;
}

.about-text {
  margin-bottom: 30px;
  color: var(--light-gold);
  font-size: 1.1rem;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: 'Rajdhani', sans-serif;
}

.stat-label {
  color: var(--light-brown);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  background-color: var(--dark-gray);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.feature-item h4 {
  margin-bottom: 10px;
  color: var(--gold);
}

.feature-item p {
  color: var(--light-gold);
  font-size: 0.9rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--gold);
  color: var(--black);
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.experience-badge span {
  font-size: 2rem;
  display: block;
  line-height: 1;
}

/* Contact Section */
.contact-content {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--gold);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-item p {
  color: var(--light-gold);
}

.social-links {
  margin-top: 50px;
}

.social-links h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  background-color: var(--black);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: var(--dark-gray);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: var(--dark-gray);
  padding: 80px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--light-gold);
  margin-bottom: 20px;
}

.footer-links h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-gold);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background-color: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 6px 0 0 6px;
  color: var(--white);
}

.newsletter-form button {
  background-color: var(--gold);
  color: var(--black);
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--light-gold);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--light-brown);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .service-details,
  .about-content,
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .service-image,
  .about-image {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 50px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .tab-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background-color: var(--dark-gray);
    text-align: center;
    padding: 30px 0;
    gap: 25px;
    transition: var(--transition);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
  }
  
  .nav-list.active {
    left: 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
}