/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 30%, #2d1b69 70%, #9d4edd 100%);
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.breadcrumb {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #b8c5d6;
}
.w1 {
    width: 1%;
}
.w15 {
    width: 15%;
}
.w5 {
    width: 5%;
}
.w78 {
    width: 78%;
}
.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd700;
}

.breadcrumb i {
    font-size: 0.8rem;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-accent {
    display: block;
    color: #b8c5d6;
    font-size: 0.6em;
    font-weight: 400;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, #00d4ff, #9d4edd, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    font-weight: 600;
}

/* Story Section */
.story {
    background: linear-gradient(135deg, #1a2332 0%, #2d1b69 100%);
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-chapter {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.story-chapter:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-chapter h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-chapter p {
    color: #b8c5d6;
    line-height: 1.7;
    font-size: 1.05rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Gameplay Section */
.gameplay {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    padding: 100px 0;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gameplay-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gameplay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(157, 78, 221, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gameplay-card:hover::before {
    opacity: 1;
}

.gameplay-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gameplay-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.gameplay-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00d4ff;
    position: relative;
    z-index: 1;
}

.gameplay-card p {
    color: #b8c5d6;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.gameplay-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #2d1b69 0%, #1a2332 100%);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #00d4ff;
}

.member-role {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.member-bio {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #b8c5d6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #0f1419 0%, #2d1b69 100%);
    padding: 100px 0;
}

.reviews-stats {
    margin-bottom: 60px;
}

.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.rating-count {
    color: #b8c5d6;
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.rating-bar span:first-child {
    min-width: 60px;
}

.rating-bar span:last-child {
    min-width: 40px;
    text-align: right;
}

.bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reviewer-info h4 {
    color: #00d4ff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.review-stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-date {
    color: #b8c5d6;
    font-size: 0.8rem;
}

.review-text {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-helpful {
    display: flex;
    justify-content: flex-end;
}

.helpful-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b8c5d6;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.reviews-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.load-more-btn,
.write-review-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.load-more-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #b8c5d6;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.write-review-btn {
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    color: white;
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

/* Blog Section */
.blog {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 100px 0;
}

.blog-featured {
    margin-bottom: 60px;
}

.featured-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-post .post-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-post .post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff;
    line-height: 1.3;
}

.post-excerpt {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #b8c5d6;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-post .post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.blog-post .post-content {
    padding: 25px;
}

.blog-post h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #00d4ff;
    line-height: 1.4;
}

.blog-post p {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.blog-post .post-meta {
    font-size: 0.8rem;
    gap: 15px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pagination-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b8c5d6;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b8c5d6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn.active {
    background: linear-gradient(45deg, #9d4edd, #00d4ff);
    color: white;
    border-color: transparent;
}

.page-btn:hover:not(.active) {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.pagination-dots {
    color: #b8c5d6;
    padding: 0 10px;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2d1b69 0%, #9d4edd 100%);
    padding: 80px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ffd700;
}

.newsletter-form button {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Active Navigation Link */
.nav-link.active {
    color: #00d4ff;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-content,
    .rating-overview,
    .featured-post,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gameplay-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        min-width: auto;
        flex-direction: column;
    }
    
    .pagination-numbers {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .featured-post .post-content {
        padding: 25px;
    }
    
    .featured-post h3 {
        font-size: 1.5rem;
    }
    
    .reviews-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #00d4ff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}