/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
   
    position: relative;
}

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

.about-hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b8c5d6;
    max-width: 600px;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 416px;
    width: 100%;
}

.about-hero-image img {
    width: 100%;
}

.panda-character {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    position: relative;
    background-image: 
        radial-gradient(circle at 35% 35%, #000 15px, transparent 15px),
        radial-gradient(circle at 65% 35%, #000 15px, transparent 15px),
        radial-gradient(ellipse 20px 15px at 50% 65%, #000 50%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panda-character::before {
    content: '🐼';
    font-size: 8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.panda-character::after {
    content: '🎰';
    font-size: 3rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-arrow {
    color: #00cc6a;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: #1a2332;
}

.our-story h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.story-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8c5d6;
    margin-bottom: 25px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: #243447;
    border: 2px solid #2a3f5f;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #00cc6a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 204, 170, 0.2);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #00cc6a;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    color: #b8c5d6;
    margin: 0;
}

/* Review Process Section */
.review-process {
    padding: 100px 0;
    background: #0f1419;
}

.review-process h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: #243447;
    border: 2px solid #2a3f5f;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    border-color: #00cc6a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 204, 170, 0.2);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #00cc6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.process-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    font-size: 0.95rem;
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
}

/* Mission & Values Section */
.mission-values {
    padding: 100px 0;

}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 357px;
    width: 100%;
}

.mission-image img {
    width: 100%;
}

.slot-machine {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #00cc6a, #00ff88);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 204, 170, 0.3);
}

.slot-machine::before {
    content: '🎰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
}

.slot-machine::after {
    content: '💰';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 5px;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.mission-text > p {
    font-size: 1.1rem;
    color: #b8c5d6;
    margin-bottom: 40px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-item {
    background: #243447;
    border: 1px solid #2a3f5f;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #00cc6a;
    transform: translateY(-3px);
}

.value-item h4 {
    font-size: 1.2rem;
    color: #00cc6a;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    color: #b8c5d6;
    margin-bottom: 15px;
    line-height: 1.6;
}

.value-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-item li {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.value-item li::before {
    content: '•';
    color: #00cc6a;
    position: absolute;
    left: 0;
}

/* Trust & Transparency Section */
.trust-transparency {
    padding: 100px 0;
    background: #0f1419;
}

.trust-transparency h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-intro {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 50px;
    line-height: 1.8;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.trust-point {
    background: #243447;
    border: 1px solid #2a3f5f;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.trust-point:hover {
    border-color: #00cc6a;
    transform: translateY(-5px);
}

.trust-point h4 {
    font-size: 1.3rem;
    color: #00cc6a;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-point p {
    font-size: 1rem;
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
}

.responsibility-notice {
    background: #1a2332;
    border: 2px solid #00cc6a;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.responsibility-notice p {
    font-size: 1rem;
    color: #b8c5d6;
    line-height: 1.8;
    margin: 0;
}

.responsibility-notice strong {
    color: #00cc6a;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #00cc6a;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 1023px) {
    .about-hero-content {
        grid-template-columns: 1fr;
     
        gap: 50px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .our-story h2,
    .review-process h2,
    .trust-transparency h2 {
        font-size: 2rem;
    }
    
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .panda-character {
        width: 300px;
        height: 300px;
    }
    
    .panda-character::before {
        font-size: 5rem;
    }
    
    .slot-machine {
        width: 250px;
        height: 320px;
    }
    
    .slot-machine::before {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-text h1 {
        font-size: 2rem;
    }
    
    .about-hero-text p {
        font-size: 1rem;
    }
    
    .our-story,
    .review-process,
    .mission-values,
    .trust-transparency {
        padding: 60px 0;
    }
    
    .process-card,
    .value-item,
    .trust-point {
        padding: 20px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .panda-character {
        width: 250px;
        height: 250px;
    }
    
    .panda-character::before {
        font-size: 4rem;
    }
    
    .slot-machine {
        width: 200px;
        height: 280px;
    }
}