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

   body {
       font-family: 'Arial', sans-serif;
       line-height: 1.6;
       color: #333;
       overflow-x: hidden;
   }

   /* Header */
   .header {
       position: fixed;
       top: 0;
       width: 100%;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       z-index: 1000;
       padding: 1rem 0;
       transition: all 0.3s ease;
   }

   .header.scrolled {
       background: rgba(102, 126, 234, 0.95);
       backdrop-filter: blur(10px);
       padding: 0.5rem 0;
   }

   .nav-container {
       max-width: 1200px;
       margin: 0 auto;
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 0 2rem;
   }

   .logo {
       font-size: 1.8rem;
       font-weight: bold;
       color: white;
       text-decoration: none;
       display: flex;
       align-items: center;
       gap: 0.5rem;
   }

   .nav-menu {
       display: flex;
       list-style: none;
       gap: 2rem;
   }

   .nav-menu a {
       color: white;
       text-decoration: none;
       transition: color 0.3s ease;
       position: relative;
   }

   .nav-menu a:hover {
       color: #ffd700;
   }

   .nav-menu a::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background: #ffd700;
       transition: width 0.3s ease;
   }

   .nav-menu a:hover::after {
       width: 100%;
   }

   .burger {
       display: none;
       flex-direction: column;
       cursor: pointer;
       gap: 4px;
   }

   .burger span {
       width: 25px;
       height: 3px;
       background: white;
       transition: all 0.3s ease;
   }

   .burger.active span:nth-child(1) {
       transform: rotate(45deg) translate(5px, 5px);
   }

   .burger.active span:nth-child(2) {
       opacity: 0;
   }

   .burger.active span:nth-child(3) {
       transform: rotate(-45deg) translate(7px, -6px);
   }

   /* Hero Section */
   .hero {
       height: 85vh;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       color: white;
       position: relative;
       overflow: hidden;
   }

   .hero::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       opacity: 0.1;
       z-index: 1;
   }

   .hero-content {
       position: relative;
       z-index: 2;
       max-width: 800px;
       padding: 0 2rem;
   }

   .hero h1 {
       font-size: 3.5rem;
       margin-bottom: 1rem;
       animation: fadeInUp 1s ease;
   }

   .hero p {
       font-size: 1.3rem;
       margin-bottom: 2rem;
       animation: fadeInUp 1s ease 0.3s both;
   }

   .cta-button {
       display: inline-block;
       padding: 1rem 2rem;
       background: #ffd700;
       color: #333;
       text-decoration: none;
       border-radius: 50px;
       font-weight: bold;
       transition: all 0.3s ease;
       animation: fadeInUp 1s ease 0.6s both;
   }

   .cta-button:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
   }

   .floating-icons {
       position: absolute;
       width: 100%;
       height: 100%;
       overflow: hidden;
       z-index: 1;
   }

   .floating-icon {
       position: absolute;
       color: rgba(255, 255, 255, 0.1);
       font-size: 2rem;
       animation: float 6s ease-in-out infinite;
   }

   .floating-icon:nth-child(1) {
       top: 20%;
       left: 10%;
       animation-delay: 0s;
   }

   .floating-icon:nth-child(2) {
       top: 60%;
       left: 80%;
       animation-delay: 2s;
   }

   .floating-icon:nth-child(3) {
       top: 80%;
       left: 20%;
       animation-delay: 4s;
   }

   .floating-icon:nth-child(4) {
       top: 30%;
       left: 70%;
       animation-delay: 1s;
   }

   /* Section Styles */
   .section {
       padding: 5rem 0;
       max-width: 1200px;
       margin: 0 auto;
       padding-left: 2rem;
       padding-right: 2rem;
   }

   .section-title {
       text-align: center;
       font-size: 2.5rem;
       margin-bottom: 3rem;
       color: #333;
       position: relative;
   }

   .section-title::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 50%;
       transform: translateX(-50%);
       width: 80px;
       height: 4px;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border-radius: 2px;
   }

   /* About Section */
   .about {
       background: #f8f9fa;
   }

   .about-content {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 3rem;
       align-items: center;
   }

   .about-text {
       font-size: 1.1rem;
       line-height: 1.8;
   }

   .about-image {
       text-align: center;
   }

   .about-image img {
       max-width: 100%;
       border-radius: 15px;
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   }

   /* Popular Games */
   .games-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
       margin-top: 2rem;
   }

   .game-card {
       background: white;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
       cursor: pointer;
   }

   .game-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
   }

   .game-card img {
       width: 100%;
       height: 200px;
       object-fit: cover;
   }

   .game-info {
       padding: 1.5rem;
   }

   .game-info h3 {
       margin-bottom: 0.5rem;
       color: #333;
   }

   .game-rating {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       margin: 1rem 0;
   }

   .stars {
       color: #ffd700;
   }

   /* Reviews Section */
   .reviews {
       background: #f8f9fa;
   }

   .review-slider {
       position: relative;
       overflow: hidden;
       border-radius: 15px;
   }

   .review-track {
       display: flex;
       transition: transform 0.5s ease;
   }

   .review-slide {
       min-width: 100%;
       background: white;
       padding: 3rem;
       text-align: center;
       border-radius: 15px;
       margin: 0 1rem;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }

   .review-slide img {
       width: 80px;
       height: 80px;
       border-radius: 50%;
       margin-bottom: 1rem;
       object-fit: cover;
   }

   .slider-controls {
       text-align: center;
       margin-top: 2rem;
   }

   .slider-btn {
       background: #667eea;
       color: white;
       border: none;
       padding: 0.5rem 1rem;
       margin: 0 0.5rem;
       border-radius: 5px;
       cursor: pointer;
       transition: background 0.3s ease;
   }

   .slider-btn:hover {
       background: #764ba2;
   }

   /* Walkthroughs */
   .walkthrough-list {
       display: grid;
       gap: 2rem;
   }

   .walkthrough-item {
       display: flex;
       background: white;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
   }

   .walkthrough-item:hover {
       transform: translateX(10px);
   }

   .walkthrough-item img {
       width: 200px;
       height: 150px;
       object-fit: cover;
   }

   .walkthrough-content {
       padding: 2rem;
       flex: 1;
   }

   .walkthrough-meta {
       display: flex;
       gap: 1rem;
       margin-top: 1rem;
       font-size: 0.9rem;
       color: #666;
   }

   /* News Section */
   .news {
       background: #f8f9fa;
   }

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

   .news-card {
       background: white;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
   }

   .news-card:hover {
       transform: translateY(-5px);
   }

   .news-card img {
       width: 100%;
       height: 200px;
       object-fit: cover;
   }

   .news-content {
       padding: 1.5rem;
   }

   .news-date {
       color: #667eea;
       font-size: 0.9rem;
       margin-bottom: 0.5rem;
   }

   /* Community */
   .community-stats {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 2rem;
       margin-top: 2rem;
   }

   .stat-card {
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
       padding: 2rem;
       border-radius: 15px;
       text-align: center;
       transition: all 0.3s ease;
   }

   .stat-card:hover {
       transform: scale(1.05);
   }

   .stat-number {
       font-size: 2.5rem;
       font-weight: bold;
       margin-bottom: 0.5rem;
   }

   /* Contact */
   .contact {
       background: #f8f9fa;
   }

   .contact-form {
       max-width: 600px;
       margin: 0 auto;
       background: white;
       padding: 3rem;
       border-radius: 15px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }

   .form-group {
       margin-bottom: 1.5rem;
   }

   .form-group label {
       display: block;
       margin-bottom: 0.5rem;
       font-weight: bold;
       color: #333;
   }

   .form-group input,
   .form-group textarea {
       width: 100%;
       padding: 1rem;
       border: 2px solid #e9ecef;
       border-radius: 10px;
       font-size: 1rem;
       transition: border-color 0.3s ease;
   }

   .form-group input:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: #667eea;
   }

   .submit-btn {
       width: 100%;
       padding: 1rem;
       background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
       border: none;
       border-radius: 10px;
       font-size: 1.1rem;
       cursor: pointer;
       transition: all 0.3s ease;
   }

   .submit-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
   }

   /* Footer */
   .footer {
       background: #333;
       color: white;
       padding: 3rem 0 1rem;
   }

   .footer-content {
       max-width: 1200px;
       margin: 0 auto;
       padding: 0 2rem;
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
   }

   .footer-section h3 {
       margin-bottom: 1rem;
       color: #ffd700;
   }

   .footer-section a {
       color: #ccc;
       text-decoration: none;
       display: block;
       margin-bottom: 0.5rem;
       transition: color 0.3s ease;
   }

   .footer-section a:hover {
       color: #ffd700;
   }

   .social-links {
       display: flex;
       gap: 1rem;
       margin-top: 1rem;
   }

   .social-links a {
       display: inline-block;
       width: 40px;
       height: 40px;
       background: #667eea;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: all 0.3s ease;
   }

   .social-links a:hover {
       background: #ffd700;
       transform: translateY(-3px);
   }

   .footer-bottom {
       text-align: center;
       margin-top: 2rem;
       padding-top: 2rem;
       border-top: 1px solid #555;
       color: #ccc;
   }

   /* Animations */
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes float {

       0%,
       100% {
           transform: translateY(0px);
       }

       50% {
           transform: translateY(-20px);
       }
   }

   .fade-in {
       opacity: 0;
       transform: translateY(30px);
       transition: all 0.6s ease;
   }

   .fade-in.visible {
       opacity: 1;
       transform: translateY(0);
   }

   /* Mobile Styles */
   @media (max-width: 768px) {
       .burger {
           display: flex;
       }

       .nav-menu {
           position: fixed;
           top: 70px;
           left: -100%;
           width: 100%;
           height: calc(100vh - 70px);
           background: rgba(102, 126, 234, 0.95);
           backdrop-filter: blur(10px);
           flex-direction: column;
           justify-content: flex-start;
           align-items: center;
           padding-top: 2rem;
           transition: left 0.3s ease;
       }

       .nav-menu.active {
           left: 0;
       }

       .nav-menu li {
           margin: 1rem 0;
       }

       .hero h1 {
           font-size: 2.5rem;
       }

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

       .about-content {
           grid-template-columns: 1fr;
           text-align: center;
       }

       .walkthrough-item {
           flex-direction: column;
       }

       .walkthrough-item img {
           width: 100%;
           height: 200px;
       }

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

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

       .community-stats {
           grid-template-columns: repeat(2, 1fr);
       }

       .footer-content {
           grid-template-columns: 1fr;
           text-align: center;
       }

       .community-stats {
           grid-template-columns: repeat(1, 1fr);
       }
   }