.about-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 50px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-hero {
    text-align: center;
    animation: fadeInDown 0.8s ease;
}

.about-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #5dade2;
    box-shadow: 0 0 20px rgba(93, 173, 226, 0.4);
    margin-bottom: 20px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(93, 173, 226, 0.8);
}

.about-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 800;
}

.highlight-blue {
    color: #5dade2;
    text-shadow: 0 0 15px rgba(93, 173, 226, 0.6);
}

.about-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #5dade2;
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.2);
}

.about-card h3 {
    color: #5dade2;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed #444;
    padding-bottom: 12px;
}

.inline-icon {
    width: 26px;
    height: auto;
}

.about-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-features li {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.about-features li::before {
    content: "•";
    color: #5dade2;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.about-features strong {
    color: #fff;
}

.about-stores {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    gap: 20px;
}

.about-stores h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
    height: 65px; 
    background: rgba(0, 0, 0, 0.6); 
    border: 1px solid #333; 
}

.store-btn img {
    height: 30px; 
    width: auto;
    transition: transform 0.3s ease;
}

.btn-hesapcomtr img {
    height: 50px; 
}

.store-btn:hover img {
    transform: scale(1.08); 
}

.btn-itemsatis:hover {
    transform: translateY(-5px);
    border-color: #0984e3; 
    box-shadow: 0 8px 25px rgba(9, 132, 227, 0.3);
}

.btn-gamesatis:hover {
    transform: translateY(-5px);
    border-color: #00b894; 
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.btn-hesapcomtr:hover {
    transform: translateY(-5px);
    border-color: #3742fa; 
    box-shadow: 0 8px 25px rgba(55, 66, 250, 0.3);
}

.reviews-section {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    margin-top: 10px;
}

.reviews-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #f1c40f; 
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #444;
    padding-bottom: 10px;
}

.review-header h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.review-stars {
    color: #f1c40f;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(241, 196, 15, 0.4);
}

.review-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 15px;
}

.review-source {
    font-size: 0.8rem;
    color: #5dade2;
    font-weight: bold;
    text-align: right;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


