        /* ABOUT CONTAINER STYLES */
        .about-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
        }

        .about-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            max-width: 400px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            margin: auto; /* Додано для гарантії центрування */
        }

        .about-header {
            text-align: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 15px;
        }

        .about-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 10px;
        }

        .about-title {
            color: #4CAF50;
            font-size: 1.5rem;
            margin: 5px 0;
            font-weight: bold;
        }

        .about-version {
            color: #4CAF50;
            font-size: 0.9rem;
            margin: 0;
        }

        .about-content {
            margin: 20px 0;
        }

        .about-row {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
            gap: 12px;
        }

        .about-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .about-small-icon {
            width: 24px;
            height: 24px;
        }

        .about-icons-group {
            display: flex;
            gap: 8px;
        }

        .about-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .caption {
            color: #4CAF50 !important;
            font-size: 0.9rem;
            line-height: 1.3;
        }

        .about-link {
            color: #4CAF50;
            text-decoration: none;
            font-size: 0.9rem;
            word-break: break-all;
        }

        .about-link:hover {
            text-decoration: underline;
        }

        .about-close-btn {
            width: 100%;
            padding: 12px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .about-close-btn:hover {
            background: #45a049;
        }

        /* Мобільна адаптація */
        @media (max-width: 480px) {
            .about-container {
                padding: 10px;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .about-card {
                padding: 20px;
                max-width: 90%;
                margin: 0 auto;
                position: relative;
                top: auto;
                left: auto;
                transform: none;
            }
            
            .about-logo {
                width: 50px;
                height: 50px;
            }
            
            .about-title {
                font-size: 1.3rem;
            }
            
            .about-row {
                flex-direction: row;
                align-items: center;
                padding: 8px;
                gap: 8px;
            }
            
            .about-icon {
                width: 28px;
                height: 28px;
            }
            
            .about-small-icon {
                width: 20px;
                height: 20px;
            }
            
            .caption {
                font-size: 0.85rem;
            }
            
            .about-link {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 320px) {
            .about-card {
                padding: 15px;
                max-width: 95%;
            }
            
            .about-row {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
            }
            
            .about-text {
                align-items: center;
            }
            
            .about-title {
                font-size: 1.2rem;
            }
        }
