.about-container {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid #C0C0C0;
    border-top: 4px solid #5A7A9A;
    min-height: 400px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E0E0E0;
}

.about-header h1 {
    color: #3D5A6C;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-header .subtitle {
    color: #6A6A6A;
    font-size: 1.2em;
    font-style: italic;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    color: #3D5A6C;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E8E8E8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6A8AAA 0%, #5A7A9A 100%);
    border-radius: 2px;
    display: inline-block;
}

.about-section p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-section ul li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    border-left: 4px solid #5A7A9A;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #4A4A4A;
}

.about-section ul li:hover {
    background: linear-gradient(135deg, #E8F0F5 0%, #D8E8F0 100%);
    border-left-color: #6A8AAA;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-section ul li::before {
    content: '✓';
    color: #5A7A9A;
    font-weight: bold;
    margin-right: 10px;
}

.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    border-radius: 10px;
    padding: 40px 30px;
    margin: 30px 0;
    border-left: 5px solid #5A7A9A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3em;
    color: #5A7A9A;
    opacity: 0.3;
}

.quote-text {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.quote-main {
    font-size: 1.8em;
    font-weight: bold;
    color: #3D5A6C;
    margin-bottom: 10px;
    font-style: italic;
}

.quote-sub {
    font-size: 1em;
    color: #6A6A6A;
    font-style: normal;
}

.quote-explanation {
    text-align: center;
    color: #6A6A6A;
    font-style: italic;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #E8F0F5 0%, #D8E8F0 100%);
    border-radius: 5px;
    border-left: 4px solid #5A7A9A;
}

.games-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.game-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #5A7A9A;
}

.game-icon {
    /* font-size: 2.5em;
    color: #5A7A9A;
    min-width: 60px;
    text-align: center; */
    width: 96px;
    height: 96px;
    left: 27px;
    top: 16px;
    overflow: hidden;
    background: url(../img/mrfzIcons.png) no-repeat;
    /* filter: drop-shadow(0px 18px 6px rgba(255, 255, 255, 0.5)); */
    filter: invert(100%);
}

.game-info {
    flex: 1;
}

.game-info h3 {
    color: #3D5A6C;
    font-size: 1.3em;
    margin-bottom: 8px;
}

.game-info p {
    color: #6A6A6A;
    font-size: 0.95em;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.about-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #5A7A9A;
}

.about-card .icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #5A7A9A;
}

.about-card h3 {
    color: #3D5A6C;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.about-card p {
    color: #6A6A6A;
    font-size: 0.95em;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: linear-gradient(180deg, #6A8AAA 0%, #5A7A9A 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.stat-item .number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.stat-item .label {
    font-size: 0.9em;
    opacity: 0.9;
}

.about-contact {
    background: linear-gradient(135deg, #F8F8F8 0%, #F0F0F0 100%);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid #D0D0D0;
}

.about-contact h3 {
    color: #3D5A6C;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #5A7A9A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item .icon {
    font-size: 1.5em;
    color: #5A7A9A;
    min-width: 30px;
    text-align: center;
}

.contact-item .text {
    color: #4A4A4A;
    font-size: 1em;
}

.contact-item .text a {
    color: #5A7A9A;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-item .text a:hover {
    color: #7A9ABA;
    text-decoration: underline;
}

.about-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
}

.about-footer p {
    color: #6A6A6A;
    font-size: 1em;
    line-height: 1.8;
}

.about-footer .highlight {
    color: #5A7A9A;
    font-weight: bold;
}

.footer-note {
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
    border-radius: 5px;
    border-left: 4px solid #E74C3C;
    color: #6A6A6A;
    font-size: 0.9em;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2em;
    }
    
    .about-section h2 {
        font-size: 1.5em;
    }
    
    .about-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        padding: 20px;
    }
    
    .quote-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .quote-icon {
        margin-bottom: 15px;
    }
    
    .quote-main {
        font-size: 1.4em;
    }
    
    .game-item {
        flex-direction: column;
        text-align: center;
    }
    
    .game-icon {
        min-width: auto;
    }
}
