/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
   
    padding: 160px 0 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.start-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.start-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.about-image {
    width: 100%;
    margin-top: 60px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

/* Suits Section */
.suits-section {
    padding: 60px 0;
}


/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }

}

@media (max-width: 768px) {

    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .suits-section {
        padding: 60px 0;
    }
    
    .suits-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    .start-btn {
        width: 100%;
        max-width: 250px;
    }
}

.games-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width:1000px){
  .games-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:450px){
  .games-section {
    grid-template-columns: 1fr;
  }
}

.game-card {
  display: flex;
  flex-direction: column;
  text-decoration: unset;
  color: inherit;
  gap: 20px;
}

.game-preview {
  position: relative;
}

.game-preview  svg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
}

.game-card .col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-card:hover .game-preview  svg {

  transform: translateX(12px) rotate(360deg) scale(1.3);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.game-preview img {
  width: 100%;
  height: auto;
}

@media (max-width:768px){
  .game-card--reserved {
    flex-direction: column-reverse !important;
  }
}