  * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: 'Oswald', sans-serif;
        background-color: #121212;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 20px;
    }
    .about-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1100px;
        background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 40px rgba(0,0,0,0.7);
        border: 1px solid rgba(255,255,255,0.05);
        position: relative;
    }
    .about-container::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%),
                    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 70%);
        pointer-events: none;
    }
    .about-image {
        flex: 1;
        min-width: 300px;
        position: relative;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    }
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 1s ease;
    }
    .about-image:hover img {
        transform: scale(1.05);
    }
    .about-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    }

    .about-content {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        animation: fadeSlideUp 1s ease forwards;
    }
    @keyframes fadeSlideUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .about-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #ff8a00, #e52e71);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: 1px;
    }
    .about-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.75);
        font-weight: 300;
        margin-bottom: 40px;
        letter-spacing: 0.3px;
    }
    .social-icons {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 25px 40px;
        justify-content: start;
    }
    .social-item {
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        position: relative;
        padding: 5px 10px;
        border-radius: 12px;
        transition: background 0.3s ease, transform 0.3s ease;
        text-decoration: none;
    }
    .social-item:hover {
        background: rgba(255,255,255,0.05);
        transform: translateY(-2px);
    }
    .icon-wrapper {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    .icon-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: invert(1) brightness(2);
    }
    .social-item:hover .icon-wrapper {
        transform: scale(1.15);
    }
    .social-id {
        color: #ccc;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    .social-item:hover .social-id {
        color: white;
    }
    .social-item {
        box-shadow: inset -2px -2px 5px rgba(255,255,255,0.05),
                    inset 2px 2px 5px rgba(0,0,0,0.5);
    }
    .social-item:hover {
        box-shadow: -2px -2px 5px rgba(255,255,255,0.05),
                    2px 2px 5px rgba(0,0,0,0.5);
    }

    /* ریسپانسیو */
    @media (max-width: 768px) {
        .about-container {
            flex-direction: column;
        }
        .about-image {
            clip-path: none;
            min-height: 200px;
        }
        .about-content {
            padding: 20px;
        }
        .social-icons {
            grid-template-columns: repeat(2, 1fr);
        }
    }