/* ===========================
   ABOUT PAGE - FINAL COMPACT
   =========================== */

/* About Sections */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.about-section.alt {
    background: #f8f8f8;
}

.about-section.light-gray {
    background: #f9f6f0;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 450px auto;
    gap: 3rem;
    align-items: center;
}

.about-content {
    text-align: left;
    max-width: 500px;
    width: 500px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

/* Photo Card - Fixed Size */
.about-card {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.about-image {
    width: 450px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-card:hover .about-image img {
    transform: scale(1.03);
}

/* Content */
.about-content {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.about-content h1,
.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-left: 0;
    font-weight: 550;
    color: #1a1a1a;
    line-height: 1.2;
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

.about-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1.5rem;
}

.about-content p:not(.about-role) {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #000;
    margin-bottom: 2rem;
}

.about-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #000;
    color: #fff;
}

/* Cards Stack */
.cards-stack {
    position: relative;
    width: 450px;
    height: 500px;
    display: flex;
    align-items: center;
}

.game-card {
    position: absolute;
    width: 280px;
    height: auto;
    transition: transform 0.7s ease, z-index 0.6s ease;
    cursor: pointer;
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.card-1 {
    right: 200px;
    z-index: 3;
}

.card-2 {
    right: 100px;
    z-index: 2;
}

.card-3 {
    right: 0;
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-30px);
    z-index: 10 !important;
}

/* Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 968px) {
    body {
        overflow-x: hidden;
    }
    
    .about-section.light-gray {
        padding-bottom: 1rem;
    }
    
    .about-section.light-gray .about-container {
        gap: 1rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
    }
    
    .about-image {
        width: 100%;
        max-width: 450px;
        height: 450px;
        margin: 0 auto;
    }
    
    .about-content {
    text-align: center !important;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.about-content h1,
.about-content h2 {
    font-size: 2.3rem;
    text-align: center !important;
}
    
    .about-btn {
        margin: 0 auto;
    }
    
    .cards-stack {
    width: 100%;
    height: 280px;
    margin: 0 auto 0 -8%;
    justify-content: center;
    transform: translateY(-15%);
    align-items: flex-start;
}
    
    .game-card {
        width: 200px;
    }
    
    .card-1 {
        right: 120px;
    }
    
    .card-2 {
        right: 60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-content h1,
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p:not(.about-role) {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 350px;
    }
    
    .about-content h1,
    .about-content h2 {
        font-size: 1.7rem;
    }
}
