/* Cyberpunk IT Color Scheme & Base Styles */
:root {
    --primary: #0ff;
    --primary-dark: #007e80;
    --secondary: #f0c;
    --tertiary: #7928CA;
    --dark: #151823;
    --darker: #0c0e16;
    --light: #e1e1ff;
    --gray: #647396;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.6);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    background-image: 
      radial-gradient(circle at 25% 25%, rgba(121, 40, 202, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
      linear-gradient(to bottom, var(--darker), var(--dark));
    background-attachment: fixed;
    background-size: cover;
  }
  
  /* Custom Cursor and Mouse Effects */
  .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
    mix-blend-mode: difference;
  }
  
  .mouse-glow {
    position: fixed;
    width: 150px;
    height: 150px;
    background: radial-gradient(
      circle,
      rgba(0, 255, 255, 0.15) 0%,
      transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
  }
  
  /* Header & Navigation */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    backdrop-filter: blur(10px);
    background: var(--glass-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 45px;
    margin-right: 1rem;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--light);
  }
  
  .logo span {
    color: var(--primary);
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .main-nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
  }
  
  .main-nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s;
  }
  
  .main-nav a:hover {
    color: var(--primary);
  }
  
  .main-nav a:not(.cta-button):hover::after {
    width: 100%;
  }
  
  .cta-button {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transition: all 0.3s;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                      url('https://images.unsplash.com/photo-1510519138101-570d1dca3d66?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 5%;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      transparent,
      transparent 2px,
      rgba(0, 255, 255, 0.03) 3px,
      rgba(0, 255, 255, 0.03) 3px
    );
    pointer-events: none;
  }
  
  .hero-content {
    max-width: 800px;
    z-index: 1;
  }
  
  .hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero h2 span {
    color: var(--primary);
    display: block;
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .glow-button {
    background: linear-gradient(45deg, var(--primary-dark), var(--tertiary));
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .glow-button i {
    margin-left: 10px;
  }
  
  .glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
  }
  
  .glow-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0)
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
  }
  
  @keyframes glitter {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(50%, 50%) rotate(360deg);
    }
  }  
  /* Section Styling */
  section {
    padding: 5rem 5% 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title span {
    color: var(--primary);
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: rgba(21, 24, 35, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
  }
  
  .service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: var(--gray);
  }
  
  /* Showcase Section Tabs */
  .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  
  .tab-btn {
    background: rgba(21, 24, 35, 0.8);
    color: var(--light);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .tab-btn.active, .tab-btn:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .content-grid, .news-grid, .shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .content-card, .news-card, .show-card {
    background: rgba(21, 24, 35, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .content-card:hover, .news-card:hover, .show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.15);
  }
  
  .video-placeholder, .image-placeholder, .show-placeholder {
    height: 200px;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(240, 0, 204, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .video-placeholder::before {
    content: '\f144';
    font-family: 'Font Awesome 5 Free';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .image-placeholder::before {
    content: '\f03e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .show-placeholder::before {
    content: '\f26c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .content-card h3, .news-card h3, .show-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
  }
  
  .content-card p, .news-card p, .show-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
  }
  
  .news-card .date {
    font-size: 0.8rem;
    color: var(--primary);
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  /* Reviews Section */
  .reviews-section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
  }

  .reviews-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }

  .reviews-title span {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
  }

  .reviews-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
  }

  .reviews-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Review Card */
  .review-card {
    background: rgba(21, 24, 35, 0.7);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .featured-review {
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(21, 24, 35, 0.7), rgba(12, 14, 22, 0.8));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }

  .featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary), var(--tertiary));
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* Review Header */
  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  }

  .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reviewer-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--light);
  }

  .rating {
    color: var(--primary);
    font-size: 0.9rem;
  }

  .review-date {
    color: var(--gray);
    font-size: 0.85rem;
  }

  /* Review Content */
  .review-content {
    margin-bottom: 20px;
  }

  .review-content p {
    color: var(--light);
    line-height: 1.6;
    font-style: italic;
  }

  /* Review Images */
  .review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .review-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .review-image:hover {
    transform: scale(1.05);
    border-color: var(--primary);
  }

  .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Review Footer */
  .review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .review-service {
    color: var(--gray);
    font-size: 0.9rem;
  }

  .review-service span {
    color: var(--primary);
    font-weight: 500;
  }

  .helpful-btn {
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: var(--gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .helpful-btn:hover, .helpful-btn.active {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
  }

  .helpful-btn.active i {
    color: var(--primary);
  }

  /* Review Controls */
  .reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 15px;
  }

  .review-control {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .review-control:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .review-pagination {
    color: var(--gray);
    font-size: 1rem;
    padding: 0 15px;
  }

  .current-page {
    color: var(--primary);
    font-weight: 600;
  }

  /* Review CTA */
  .review-cta {
    margin-top: 4rem;
    text-align: center;
    background: rgba(21, 24, 35, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .review-cta p {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.1rem;
  }

  .review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .review-btn i {
    font-size: 1.1rem;
  }

  /* Responsive styles for reviews */
  @media (max-width: 992px) {
    .reviews-container {
      grid-template-columns: 1fr;
      max-width: 600px;
    }
  }

  @media (max-width: 768px) {
    .reviews-title {
      font-size: 1.8rem;
    }
    
    .review-card {
      padding: 20px;
    }
    
    .review-images {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .review-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    
    .review-date {
      align-self: flex-end;
    }
    
    .review-footer {
      flex-direction: column;
      gap: 15px;
      align-items: flex-start;
    }
    
    .helpful-btn {
      align-self: flex-end;
    }
    
    .review-cta {
      padding: 20px;
    }
  }

  /* Animation for reviews */
  .review-card {
    animation: fadeIn 0.5s ease-in-out;
  }

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

  /* Hover effects for review cards */
  .review-card:hover .rating i {
    animation: starPulse 1s infinite alternate;
  }

  @keyframes starPulse {
    from {
      transform: scale(1);
      opacity: 1;
    }
    to {
      transform: scale(1.2);
      opacity: 0.8;
    }
  }

  /* Review image modal preview */
  .review-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .review-image-modal.active {
    opacity: 1;
    pointer-events: all;
  }

  .modal-image-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
  }

  .modal-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  }

  .close-modal {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .close-modal:hover {
    background: var(--primary);
    transform: rotate(90deg);
  }
  
  /* About Section */
  .about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .about-image {
    flex: 1;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), transparent);
    border-radius: 8px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
  }
  
  .about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  /* Contact Section */
  .contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .contact-card {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
  }
  
  .contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
  }
  
  .contact-link {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }
  
  .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
  }
  
  /* MacOS Style Dock */
  .dock-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 1000;
  }
  
  .dock {
    display: flex;
    background: rgba(21, 24, 35, 0.265);
    border: 1px solid rgba(255, 255, 255, 0.176);
    border-radius: 16px;
    padding: 0.7rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }
  
  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0.8rem;
    position: relative;
    transition: all 0.3s ease;
  }
  
  /* Add this to your CSS file for fancy icon styling */
  .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #151823, #1d2035);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
  }

  .dock-item:hover .icon-wrapper::before {
    left: 100%;
  }

  .icon-wrapper i {
    font-size: 22px;
    color: white;
    transition: all 0.3s ease;
  }

  /* Custom colors for each icon */
  .dock-item:nth-child(1) .icon-wrapper { border-color: #0ff; }
  .dock-item:nth-child(1) .icon-wrapper i { color: #0ff; }

  .dock-item:nth-child(2) .icon-wrapper { border-color: #f0c; }
  .dock-item:nth-child(2) .icon-wrapper i { color: #f0c; }

  .dock-item:nth-child(3) .icon-wrapper { border-color: #0f6; }
  .dock-item:nth-child(3) .icon-wrapper i { color: #0f6; }

  .dock-item:nth-child(4) .icon-wrapper { border-color: #f90; }
  .dock-item:nth-child(4) .icon-wrapper i { color: #f90; }

  .dock-item:nth-child(5) .icon-wrapper { border-color: #90f; }
  .dock-item:nth-child(5) .icon-wrapper i { color: #90f; }

  .logo-wrapper {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-dark), var(--tertiary));
  }

  .logo-wrapper img {
    width: 80% !important;
    height: auto !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Enhanced hover effects */
  .dock-item:hover .icon-wrapper {
    transform: translateY(-10px) scale(1.2);
    background: linear-gradient(135deg, #1f2242, #2a2d5a);
  }

  .dock-item:hover .icon-wrapper i {
    transform: scale(1.2);
  }

  /* Add glow effects on hover */
  .dock-item:nth-child(1):hover .icon-wrapper { box-shadow: 0 5px 20px rgba(0, 255, 255, 0.7); }
  .dock-item:nth-child(2):hover .icon-wrapper { box-shadow: 0 5px 20px rgba(240, 0, 204, 0.7); }
  .dock-item:nth-child(3):hover .icon-wrapper { box-shadow: 0 5px 20px rgba(0, 255, 102, 0.7); }
  .dock-item:nth-child(4):hover .icon-wrapper { box-shadow: 0 5px 20px rgba(255, 153, 0, 0.7); }
  .dock-item:nth-child(5):hover .icon-wrapper { box-shadow: 0 5px 20px rgba(153, 0, 255, 0.7); }
  .logo-item:hover .icon-wrapper { box-shadow: 0 5px 25px rgba(0, 255, 255, 0.9); }
  
  .dock-item .tooltip {
    position: absolute;
    top: -40px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
  }
  
  .dock-item:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Footer */
  footer {
    background: var(--darker);
    padding: 4rem 5% 1rem;
    margin-top: 6rem;
    position: relative;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .footer-logo h3 {
    font-size: 1.5rem;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
  }
  
  .footer-column ul {
    list-style: none;
  }
  
  .footer-column ul li {
    margin-bottom: 0.7rem;
  }
  
  .footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column a:hover {
    color: var(--primary);
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s;
  }
  
  .footer-social a:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
      grid-column: 1 / -1;
      align-items: center;
      margin-bottom: 2rem;
    }
  }
  
  @media (max-width: 900px) {
    .about-content {
      flex-direction: column;
    }
    
    .about-image {
      width: 100%;
      margin-bottom: 2rem;
    }
    
    .dock-item img {
      width: 45px;
      height: 45px;
    }
    
    .logo-item img {
      width: 50px;
      height: 50px;
    }
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      padding: 1rem 5%;
    }
    
    .logo {
      margin-bottom: 1rem;
    }
    
    .main-nav ul {
      gap: 1rem;
    }
    
    .hero h2 {
      font-size: 2.5rem;
    }
    
    .hero h2 span {
      font-size: 1.8rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
    }
    
    .footer-links {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .main-nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .footer-links {
      grid-template-columns: 1fr;
    }
    
    .dock-item {
      margin: 0 0.5rem;
    }
    
    .dock-item img {
      width: 40px;
      height: 40px;
    }
    
    .logo-item img {
      width: 45px;
      height: 45px;
    }
  }
  
  @media (max-width: 480px) {
    .hero h2 {
      font-size: 2rem;
    }
    
    .hero h2 span {
      font-size: 1.5rem;
    }
    
    .dock-item {
      margin: 0 0.3rem;
    }
    
    .dock-item img {
      width: 35px;
      height: 35px;
    }
    
    .logo-item img {
      width: 40px;
      height: 40px;
    }
  }
  
/* Improved slideshow styles */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: rgba(21, 24, 35, 0.4);
  backdrop-filter: blur(5px);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  text-align: center;
  padding: 0 50px;
  max-width: 800px;
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--primary), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.slide-content p {
  color: var(--light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slideshow controls */
.slide-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.slide-dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot.active {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slide-arrow:hover {
  background: rgba(0, 255, 255, 0.3);
}

.slide-prev {
  left: 20px;
}

.slide-next {
  right: 20px;
}

/* Slide animations */
.slide-in-right {
  animation: slideInRight 0.8s forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s forwards;
}

.slide-out-right {
  animation: slideOutRight 0.8s forwards;
}

.slide-out-left {
  animation: slideOutLeft 0.8s forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slideshow-container {
    height: 350px;
  }
  
  .slide-content h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .slideshow-container {
    height: 300px;
  }
  
  .slide-content {
    padding: 0 30px;
  }
  
  .slide-content h2 {
    font-size: 1.5rem;
  }
  
  .slide-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
/*blog page*/
/* Continuing from where it cut off */
.cyber-nav-item.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Cards */
.cyber-card {
    background: rgba(8, 8, 15, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.cyber-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.2);
}

.cyber-card:hover::before {
    opacity: 1;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.category-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
}

.security { 
    background: #ff3660;
    color: #fff;
}

.software {
    background: #00c3ff;
    color: #000;
}

.game {
    background: #ff00e6;
    color: #fff;
}

.it {
    background: #00a3ff;
    color: #fff;
}

.team {
    background: #00ff88;
    color: #000;
}

.news {
    background: #ffcc00;
    color: #000;
}

.post-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.cyber-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cyber-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.cyber-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.cyber-card-content {
    padding: 20px;
}

.cyber-card-content h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.cyber-card:hover .cyber-card-content h3 {
    color: var(--primary);
}

.cyber-card-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cyber-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.read-time {
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cyber-btn-small {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 240, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cyber-btn-small:hover {
    background: rgba(0, 240, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.cyber-btn-small:hover::before {
    left: 100%;
}

/* Pagination */
.cyber-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
}

.page-control {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-control:hover,
.page-control.active {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.page-separator {
    color: var(--gray);
}

.next-page {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 0 15px;
    height: 40px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.next-page:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Newsletter Panel */
.cyber-panel {
    background: rgba(8, 8, 15, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cyber-panel::before,
.cyber-panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    opacity: 0.5;
}

.cyber-panel::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.cyber-panel::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.cyber-panel h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cyber-panel p {
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 30px;
}

.cyber-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 12px 15px;
    color: #ffffff;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

.cyber-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 240, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.cyber-btn:hover::before {
    left: 100%;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-glitch-text {
        font-size: 2.2rem;
    }
    
    .section-header {
        padding: 60px 0 20px;
    }
    
    .cyber-nav-box {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .cyber-nav-item {
        padding: 6px 12px;
        white-space: nowrap;
        font-size: 0.8rem;
    }
    
    .cyber-card-img {
        height: 180px;
    }
    
    .cyber-panel {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .form-group {
        flex-direction: column;
    }
    
    .cyber-btn {
        width: 100%;
        padding: 12px;
    }
    
    .cyber-pagination {
        flex-wrap: wrap;
    }
}

/* Animations */
@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
    }
}
/* Blog styles for DeafTech Support */

/* Blog hero modifications */
.blog-hero {
    height: 60vh;
}

/* Blog Categories */
#blog-categories {
    padding-top: 2rem;
}

.cyber-nav-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 40px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    max-width: 1000px;
}

.cyber-nav-item {
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-nav-item:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.cyber-nav-item.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 5%;
}

/* Blog Post Card */
.blog-post {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-post.animate {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.post-date {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Blog Image */
.blog-image-container {
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 6px;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image-container img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Blog Card Footer */
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.read-time {
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    font-size: 0.9rem;
}

/* Category Badges */
.category-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
}

.security { background: #ff3660; color: #fff; }
.software { background: #00c3ff; color: #000; }
.game { background: #ff00e6; color: #fff; }
.it { background: #00a3ff; color: #fff; }
.team { background: #00ff88; color: #000; }
.news { background: #ffcc00; color: #000; }

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.cyber-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-control {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-control:hover,
.page-control.active {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.page-separator {
    color: var(--gray);
}

.next-page {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 0 15px;
    height: 40px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.next-page:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Newsletter Section */
.newsletter-section {
    padding: 0 5%;
}

.newsletter-panel {
    background: rgba(8, 8, 15, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 40px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-panel::before,
.newsletter-panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary);
    opacity: 0.5;
}

.newsletter-panel::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.newsletter-panel::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.newsletter-panel h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cyber-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.newsletter-panel p {
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 30px;
}

.cyber-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 12px 15px;
    color: #ffffff;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
}

.cyber-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.cyber-btn:hover::before {
    left: 100%;
}

/* Success message for form submission */
.success-message {
    text-align: center;
    padding: 20px;
}

/* Error styling */
.error-message {
    color: #ff3660;
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: left;
}

/* Animations */
@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.4;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-nav-box {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .cyber-nav-item {
        padding: 6px 12px;
        white-space: nowrap;
        font-size: 0.8rem;
    }
    
    .blog-image-container {
        height: 180px;
    }
    
    .newsletter-panel {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .form-group {
        flex-direction: column;
    }
    
    .cyber-btn {
        width: 100%;
        padding: 12px;
    }
    
    .cyber-pagination {
        flex-wrap: wrap;
    }
    
    .blog-card-header,
    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .blog-card-footer .read-more {
        align-self: flex-end;
    }
}
                                        /*Repair*/
/* Repair page specific styles */
.repair-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                    url('https://images.unsplash.com/photo-1597872200969-2b65d56bd16b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 5%;
}

.repair-step-card {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.repair-step-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.repair-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.repair-step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.repair-step-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.repair-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 5%;
}

.repair-service-card {
    background: linear-gradient(145deg, rgba(21, 24, 35, 0.7), rgba(12, 14, 22, 0.8));
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.repair-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
}

.service-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.service-title i {
    font-size: 2rem;
    color: var(--primary);
}

.service-title h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.service-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.price {
    font-size: 1.8rem;
    color: white;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
}

.repair-form-container {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 3rem auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.repair-form-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.repair-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: 4px;
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.repair-submit-btn {
    background: linear-gradient(45deg, var(--primary-dark), var(--tertiary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.repair-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.3);
}

.faq-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 5%;
}

.faq-item {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    margin: 0;
}

.faq-item.active .faq-question {
    background: rgba(0, 255, 255, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .repair-form {
        grid-template-columns: 1fr;
    }
    
    .repair-form-container {
        padding: 2rem;
    }
    
    .service-types {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .repair-step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .repair-service-card {
        padding: 1.5rem;
    }
    
    .service-title i {
        font-size: 1.5rem;
    }
    
    .service-title h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
}
/*Software page*/
/* Software page specific styles */
.software-hero {
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                      url('https://images.unsplash.com/photo-1610563166150-b34df4f3bcd6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 60vh;
}

/* Software Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    background: rgba(21, 24, 35, 0.8);
    color: var(--light);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.category-btn.active, .category-btn:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Software Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 60px;
}

/* Software Card */
.software-card {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}
/* Software page specific styles */
.software-hero {
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                      url('https://images.unsplash.com/photo-1610563166150-b34df4f3bcd6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 60vh;
}

/* Software Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    background: rgba(21, 24, 35, 0.8);
    color: var(--light);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.category-btn.active, .category-btn:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Software Grid */
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 60px;
}

/* Software Card */
.software-card {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.software-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary);
}

.software-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.software-badge.premium {
    background: linear-gradient(45deg, #f0c, var(--tertiary));
}

.software-icon {
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
}

.software-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.software-desc {
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
}

.software-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.version {
    color: var(--gray);
}

.rating {
    color: var(--primary);
}

.rating-count {
    color: var(--gray);
    margin-left: 5px;
}

.software-platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--gray);
}

.download-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.premium-btn {
    border-color: #f0c;
    color: #f0c;
}

.premium-btn:hover {
    background: rgba(240, 0, 204, 0.1);
    box-shadow: 0 0 15px rgba(240, 0, 204, 0.3);
}

/* Featured Software Section */
.featured-software {
    padding: 5rem 5% 3rem;
}

.featured-software-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: rgba(21, 24, 35, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.software-preview {
    position: relative;
    height: 100%;
}

.software-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.software-preview:hover .preview-overlay {
    opacity: 1;
}

.preview-btn {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: var(--primary);
    color: var(--darker);
    transform: scale(1.1);
}

.software-details {
    padding: 30px;
}

.software-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.version-badge {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.software-rating {
    color: var(--primary);
    margin-bottom: 20px;
}

.software-features h4, .software-requirements h4 {
    color: var(--light);
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.software-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.software-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.software-features li i {
    color: var(--primary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.req-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.req-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.software-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.download-featured-btn {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.learn-more-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(21, 24, 35, 0.8), rgba(21, 24, 35, 0.8)), url('https://images.unsplash.com/photo-1616763355548-1b606f439f86?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

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

.download-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.download-section p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.mega-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mega-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.mega-download-btn i {
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .software-features ul {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .featured-software-card {
        grid-template-columns: 1fr;
    }
    
    .software-preview {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .software-actions {
        flex-direction: column;
    }
    
    .download-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .software-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        justify-content: flex-start;
    }
    
    .category-btn {
        white-space: nowrap;
    }
    
    .mega-download-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Software Card Image */
.software-img {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.software-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 24, 35, 0.6), transparent);
}

.software-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.software-card:hover .software-img {
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    border-color: var(--primary);
}

/* Updated Software Meta */
.software-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.last-updated {
    color: var(--gray);
}

/* Enhanced Rating Container */
.rating-container {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--primary);
    margin-bottom: 3px;
}

.rating-score {
    margin-left: 10px;
    font-weight: bold;
}

.rating-count {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Card hover effects */
.software-card:hover .rating i {
    animation: starPulse 1s infinite alternate;
}

@keyframes starPulse {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .software-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .software-img {
        height: 140px;
    }
    
    .software-meta {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}
/* Games page specific styles */
.games-hero {
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                      url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    height: 60vh;
}

/* Games Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    background: rgba(21, 24, 35, 0.8);
    color: var(--light);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.category-btn.active, .category-btn:hover {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 60px;
}

/* Game Card */
.game-card {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
    border-color: var(--primary);
}

.game-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.game-badge.premium {
    background: linear-gradient(45deg, #f0c, var(--tertiary));
}

.game-img {
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.game-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(21, 24, 35, 0.6), transparent);
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-card:hover .game-img {
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    border-color: var(--primary);
}

.game-platform-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
    border: 1px solid var(--primary);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.game-desc {
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.last-updated {
    color: var(--gray);
}

/* Rating styles */
.rating-container {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--primary);
    margin-bottom: 3px;
}

.rating-score {
    margin-left: 10px;
    font-weight: bold;
}

.rating-count {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Game Tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.game-tags span {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.download-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.premium-btn {
    border-color: #f0c;
    color: #f0c;
}

.premium-btn:hover {
    background: rgba(240, 0, 204, 0.1);
    box-shadow: 0 0 15px rgba(240, 0, 204, 0.3);
}

/* Featured Game Section */
.featured-game {
    padding: 5rem 5% 3rem;
}

.featured-game-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: rgba(21, 24, 35, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game-preview {
    position: relative;
    height: 100%;
}

.game-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-preview:hover .preview-overlay {
    opacity: 1;
}

.preview-btn {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: var(--primary);
    color: var(--darker);
    transform: scale(1.1);
}

.game-details {
    padding: 30px;
}

.game-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.version-badge {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.game-rating {
    color: var(--primary);
    margin-bottom: 20px;
}

.game-rating span {
    color: var(--gray);
    margin-left: 10px;
    font-size: 0.9rem;
}

.game-details p {
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.game-features h4, .game-specs h4 {
    color: var(--light);
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.game-features ul {
    list-style: none;
    display: flex;
}

.feature-column {
    flex: 1;
}

.game-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.game-features li i {
    color: var(--primary);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.game-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.download-featured-btn {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.learn-more-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Game Community Section */
.game-community {
    padding: 5rem 0;
    background: linear-gradient(rgba(21, 24, 35, 0.8), rgba(21, 24, 35, 0.8)), url('https://images.unsplash.com/photo-1560253023-3ec5d502959f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

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

.game-community h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.game-community p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary);
    color: var(--light);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.community-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.community-btn i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* Hover effects */
.game-card:hover .rating i {
    animation: starPulse 1s infinite alternate;
}

@keyframes starPulse {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .featured-game-card {
        grid-template-columns: 1fr;
    }
    
    .game-preview {
        height: 300px;
    }
    
    .game-features ul {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .game-actions {
        flex-direction: column;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .community-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
        justify-content: flex-start;
    }
    
    .category-btn {
        white-space: nowrap;
    }
    
    .game-meta {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

/*Blog poster*/
/* Blog Post Specific Styles */
.blog-post-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.blog-author-sidebar {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 120px;
    height: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 5px;
    text-align: center;
}

.author-title {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.post-meta {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-date {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    margin-bottom: 10px;
}

.post-category {
    display: inline-block;
    background: var(--primary);
    color: var(--darker);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.author-bio {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.author-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: var(--gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.blog-content-area {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.blog-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-title {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-video {
    width: 100%;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.blog-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.blog-text {
    padding: 30px;
    color: var(--light);
    line-height: 1.8;
}

.blog-text p {
    margin-bottom: 20px;
}

.blog-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.blog-text h3 {
    font-size: 1.4rem;
    color: var(--light);
    margin: 30px 0 15px;
}

.blog-text ul, .blog-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-text li {
    margin-bottom: 10px;
}

.blog-text a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary);
    transition: all 0.3s ease;
}

.blog-text a:hover {
    border-bottom: 1px solid var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-post {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    color: var(--gray);
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
}

.read-more-posts {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.read-more-posts:hover {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .blog-post-container {
        grid-template-columns: 1fr;
    }
    
    .blog-author-sidebar {
        position: static;
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 20px;
        align-items: center;
    }
    
    .author-image {
        margin: 0;
    }
    
    .author-details {
        text-align: left;
    }
    
    .author-name, .author-title {
        text-align: left;
    }
    
    .author-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .blog-author-sidebar {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .author-details {
        text-align: center;
    }
    
    .author-name, .author-title {
        text-align: center;
    }
    
    .author-socials {
        justify-content: center;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-actions {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
                        





                                        /*Software Opener*/
/* Software page specific styles */
.software-hero {
    height: 50vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                    url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.software-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.software-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.software-hero-content h1 span {
    color: var(--primary);
}

.software-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.software-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.slideshow-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}

.software-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 20px;
}

.video-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.video-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.download-section {
    grid-column: 1 / -1;
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.download-section h2 {
    font-size: 2.2rem;
    color: var(--light);
    margin-bottom: 20px;
}

.download-section p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.download-option {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    transition: all 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 255, 255, 0.3);
    border-color: var(--primary);
}

.download-option i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.download-option h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.download-option p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.download-btn {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--darker);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.software-description {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.description-card {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.description-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.description-card h3 i {
    font-size: 1.2rem;
}

.description-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--light);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* System requirements section */
.system-requirements {
    grid-column: 1 / -1;
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.system-requirements h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

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

.requirement-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.requirement-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.requirement-list {
    list-style: none;
}

.requirement-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

.requirement-list li span:last-child {
    color: var(--light);
}

.requirement-list li:last-child {
    border-bottom: none;
}

/* Responsive styles */
@media (max-width: 900px) {
    .software-layout {
        grid-template-columns: 1fr;
    }
    
    .software-description {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .software-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .download-option {
        width: 100%;
        max-width: 300px;
    }
}





                                /*Game Opener*/
                                /* Games page specific styles */
.game-hero {
    height: 40vh;
    min-height: 300px;
    background-image: linear-gradient(rgba(12, 14, 22, 0.7), rgba(12, 14, 22, 0.8)), 
                    url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
}

.game-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.game-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.game-hero-content h1 span {
    color: var(--primary);
}

.game-hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

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

/* Game Rating Section */
.game-rating-section {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-rating {
    color: var(--primary);
    font-size: 1.2rem;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.rating-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.players-count {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.players-count i {
    color: var(--primary);
}

.category-tag {
    background: rgba(0, 255, 255, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.age-rating {
    background: rgba(240, 0, 204, 0.2);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Main Game Content Layout */
.game-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Game Container */
.game-container {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cyber-glitch-text {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

.game-area {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

#gameCanvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#startGameBtn {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.game-score {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 255, 0.3);
    display: none;
}

.game-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.control-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: var(--light);
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.control-btn i {
    font-size: 1rem;
}

/* How to Play Section */
.how-to-play {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.how-to-play-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-play-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instructions {
    padding: 20px;
    flex-grow: 1;
}

.instructions ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.instructions ol li {
    color: var(--light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.key-controls {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.key-controls h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.key-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.key-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.key {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.key-action {
    color: var(--gray);
}

.accessibility-features {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accessibility-features h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accessibility-features ul {
    list-style: none;
}

.accessibility-features li {
    color: var(--light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accessibility-features li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.accessibility-features li strong {
    color: var(--light);
}

/* System Requirements Section */
.system-requirements {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.system-requirements h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

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

.requirement-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
}

.requirement-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.requirement-list {
    list-style: none;
}

.requirement-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

.requirement-list li span:last-child {
    color: var(--light);
}

.requirement-list li:last-child {
    border-bottom: none;
}

/* Game Info Footer */
.game-info-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.developer-info {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.developer-info h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.developer-profile {
    display: flex;
    gap: 20px;
}

.developer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.developer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.developer-details {
    flex-grow: 1;
}

.developer-details h5 {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 10px;
}

.developer-details p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.developer-links {
    display: flex;
    gap: 15px;
}

.dev-link {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dev-link:hover {
    color: var(--light);
    text-decoration: underline;
}

.game-metadata {
    background: rgba(21, 24, 35, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metadata-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metadata-item:last-child {
    border-bottom: none;
}

.meta-label {
    color: var(--gray);
    font-weight: 500;
}

.meta-value {
    color: var(--light);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .game-main-content {
        grid-template-columns: 1fr;
    }
    
    .game-info-footer {
        grid-template-columns: 1fr;
    }
    
    .key-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .game-rating-section {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .rating-meta {
        width: 100%;
        justify-content: space-between;
    }
    
    .game-area {
        height: 400px;
    }
    
    .developer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .developer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .game-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cyber-glitch-text {
        font-size: 1.8rem;
    }
    
    .game-area {
        height: 350px;
    }
    
    .game-controls {
        flex-wrap: wrap;
    }
    
    .control-btn {
        flex: 1;
        justify-content: center;
        padding: 8px;
        min-width: 100px;
    }
}

/* Game-specific Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 255, 0);
    }
}

@keyframes colorCycle {
    0% { border-color: var(--primary); }
    33% { border-color: var(--secondary); }
    66% { border-color: var(--tertiary); }
    100% { border-color: var(--primary); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.color-cycle {
    animation: colorCycle 4s infinite;
}
/* Mobile Requirements Styling */
.mobile-requirement {
    border-left: 3px solid var(--secondary);
}

.mobile-requirement h4 {
    color: var(--secondary);
}

/* Make requirements grid responsive for 3 cards */
@media (min-width: 993px) and (max-width: 1200px) {
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .requirement-card {
        padding: 12px;
    }
    
    .requirement-list li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .requirements-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}


                                                                            /*Graphic Design*/
/* Graphic Design page specific styles */
/* Building on the existing cyberpunk theme */

/* Hero section with special background for design page */
.design-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.design-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
}

.design-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Service cards with design-specific styling */
.design-services-section .service-card {
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.design-services-section .service-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
}

.design-services-section .service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.design-services-section .service-card:hover i {
    color: var(--accent-secondary);
    transform: scale(1.1);
}

/* Portfolio section styling */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.portfolio-tabs .tab-btn {
    background-color: var(--card-bg);
    border: none;
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.portfolio-tabs .tab-btn:hover {
    background-color: rgba(0, 168, 255, 0.1);
}

.portfolio-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    color: white;
}

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

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
}

.portfolio-image {
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 30, 0.9) 0%, rgba(0, 0, 30, 0) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem;
    width: 100%;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-secondary);
}

/* Design process timeline styling */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    position: relative;
    z-index: 1;
    border: 3px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
}

.process-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.process-content {
    width: calc(50% - 4rem);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.process-content h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Package cards styling */
.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
}

.featured-package {
    border: 2px solid var(--accent-primary);
    transform: translateY(-15px);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

.package-header {
    background: linear-gradient(to right, rgba(0, 168, 255, 0.1), rgba(0, 168, 255, 0.3));
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.package-features {
    list-style: none;
    padding: 2rem;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.package-features li i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.package-features li i.fa-check {
    color: var(--accent-tertiary);
}

.package-features li i.fa-times {
    color: var(--text-secondary);
}

.package-card .glow-button {
    margin: 0 2rem 2rem;
}

.accent-button {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
}

/* Design form styling */
.design-form-section {
    padding: 5rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.design-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.design-form label {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.design-form input,
.design-form select,
.design-form textarea {
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-primary);
}

.design-form input:focus,
.design-form select:focus,
.design-form textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    padding: 2rem;
    text-align: center;
    border: 1px dashed rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-text {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.design-submit-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.design-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.4);
}

/* Special effects and animations */
@keyframes borderGlow {
    0% {
        border-color: var(--accent-primary);
        box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
    }
    50% {
        border-color: var(--accent-secondary);
        box-shadow: 0 0 20px rgba(240, 0, 204, 0.5);
    }
    100% {
        border-color: var(--accent-primary);
        box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
    }
}

.portfolio-item:hover {
    animation: borderGlow 2s infinite;
}

/* Process timeline animations */
.process-icon {
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.6);
}

.process-step:hover .process-icon i {
    color: var(--accent-secondary);
}

/* Responsive design adjustments */
@media (max-width: 992px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .process-icon {
        margin: 0;
        margin-right: 2rem;
    }
    
    .process-content {
        width: calc(100% - 80px - 2rem);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .package-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .featured-package {
        transform: translateY(0);
    }
    
    .design-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .process-content {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
}
/* Add these styles to your existing graphic-design.css file */

/* Product CTA section styling */
.product-cta {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-cta:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.3);
}

.product-cta h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.product-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom buttons for each product type */
.tshirt-button {
    background: linear-gradient(135deg, #00a8ff, #0055ff);
}

.mug-button {
    background: linear-gradient(135deg, #ff2e63, #ff005d);
}

.cup-button {
    background: linear-gradient(135deg, #08d9d6, #00a3a0);
}

.glass-button {
    background: linear-gradient(135deg, #a239ca, #4c00c2);
}

/* Button hover effects */
.tshirt-button:hover,
.mug-button:hover,
.cup-button:hover,
.glass-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 168, 255, 0.5);
}



                                                /*Game Desktop*/

                                                /* Gaming Desktop Building page specific styles */

/* Hero section */
.gaming-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                      url('https://images.unsplash.com/photo-1593640408182-31c70c8268f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.gaming-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-secondary) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 1;
}

.gaming-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Intro section */
.gaming-intro {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
}

.intro-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.intro-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 168, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
}
/* Pre-built PC section */
.prebuild-section {
    padding: 5rem 0;
}

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

.rig-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
}

.rig-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.3);
    border-color: var(--accent-primary);
}

.featured-rig {
    border: 2px solid var(--accent-primary);
    transform: translateY(-15px);
}

.featured-rig:hover {
    transform: translateY(-25px);
}

.rig-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
    z-index: 10;
}

.rig-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.rig-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rig-header h3 span {
    color: var(--accent-primary);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.rig-image {
    position: relative;
    overflow: hidden;
}

.rig-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rig-card:hover .rig-image img {
    transform: scale(1.05);
}

.performance-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--accent-primary);
}

.rig-specs {
    padding: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.spec-item i {
    color: var(--accent-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.rig-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-link {
    color: var(--text-secondary);
    text-align: center;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.spec-link:hover {
    color: var(--accent-primary);
}

/* Build Process section */
.build-steps {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.build-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.build-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 255, 255, 0.1);
    line-height: 1;
    margin-right: 2rem;
    flex-shrink: 0;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.step-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.5);
}

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

/* Component section */
.component-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.component-tabs {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.component-tabs .tab-btn {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem 1rem;
    background: var(--card-bg);
    border: none;
    border-radius: 30px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.component-tabs .tab-btn:hover {
    background: rgba(0, 168, 255, 0.1);
}

.component-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    color: white;
}

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

.component-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
    border-color: var(--accent-primary);
}

.component-image {
    width: 40%;
    overflow: hidden;
}

.component-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.component-card:hover .component-image img {
    transform: scale(1.1);
}

.component-info {
    width: 60%;
    padding: 1.5rem;
}

.component-info h3 {
    color: var(--accent-primary);
    margin-bottom: 0.8rem;
}

.component-options {
    margin-top: 1rem;
}

.option {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.option:last-child {
    border-bottom: none;
}

/* Visual feedback section */
.visual-feedback-section {
    padding: 5rem 0;
}

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

.visual-feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.visual-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
    border-color: var(--accent-primary);
}

.visual-feature i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.visual-feature h3 {
    margin-bottom: 1rem;
}

.visual-demo {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    gap: 2rem;
    align-items: center;
}

.demo-video-container {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.demo-video-container img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: white;
}

.play-button:hover {
    background: var(--accent-secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.demo-description {
    flex: 1;
}

.demo-description h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

/* Showcase section */
.showcase-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

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

.showcase-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(50%);
    opacity: 0;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-info h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.showcase-info p {
    color: var(--text-secondary);
}

/* Testimonials section */
.testimonials-section {
    padding: 5rem 0;
}

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

.testimonial {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 255, 0.3);
    border-color: var(--accent-primary);
}

.quote {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote i {
    color: white;
}

.testimonial p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--accent-primary);
}

.author-info h4 {
    margin-bottom: 0.3rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--accent-primary);
}

/* Quote form section */
.quote-form-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}

.form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.quote-form {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.quote-form label {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-primary);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .intro-container,
    .visual-demo {
        flex-direction: column;
    }
    
    .intro-image,
    .demo-video-container,
    .demo-description {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .demo-description {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .build-step {
        flex-direction: column;
    }
    
    .step-number {
        font-size: 3rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        top: -30px;
        right: 20px;
    }
    
    .component-card {
        flex-direction: column;
    }
    
    .component-image,
    .component-info {
        width: 100%;
    }
    
    .component-tabs .tab-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .quote-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .gaming-hero h2 {
        font-size: 2rem;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .rig-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
}

/* Animation effects */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 168, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 168, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 168, 255, 0.5);
    }
}

.rig-card:hover,
.step-content:hover,
.visual-feature:hover,
.testimonial:hover {
    animation: glowPulse 2s infinite;
}
