    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #fff;
        min-height: 100vh;
        padding: clamp(16px, 5vw, 40px);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    h1 {
        text-align: center;
        font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
        margin-bottom: clamp(28px, 5vw, 50px);
        font-weight: 300;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: clamp(16px, 4vw, 24px);
        justify-items: center;
    }

    .card {
        background: rgba(60, 60, 60, 0.6);
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        max-width: 320px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(100, 100, 100, 0.3);
        cursor: pointer;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }

    .card-image {
        width: 100%;
        height: clamp(300px, 45vw, 280px);
        object-fit: cover;
        display: block;
    }

    .card-content {
        padding: 20px;
        text-align: center;
    }

    .card-name {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #fff;
    }

    .card-title {
        font-size: 0.95rem;
        color: #b0b0b0;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .card-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(100, 100, 100, 0.4);
        border-radius: 50%;
        text-decoration: none;
        color: #fff;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .social-icon:hover {
        background: #0077b5;
        transform: scale(1.15);
    }

    .social-icon.github:hover {
        background: #333;
    }

    .social-icon.instagram:hover {
        background: #E4405F;
    }

    .social-icon.twitter:hover {
        background: #1DA1F2;
    }

    .social-icon.globe:hover {
        background: #4CAF50;
    }

    @media (max-width: 900px) {
        body {
            padding: clamp(14px, 4vw, 28px);
        }

        .grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .card {
            max-width: 100%;
        }

        .card-content {
            padding: 18px;
        }
    }

    @media (max-width: 640px) {
        body {
            padding: clamp(12px, 5vw, 20px);
        }

        .grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .card {
            max-width: 480px;
        }

        .card-content {
            padding: 16px;
        }

        .card-title {
            font-size: 0.9rem;
        }
    }
