.ornament {
            max-width: 3rem;
            padding-top: 3rem;
            padding-bottom: 6rem;
        }

        .ornament2 {
            padding-top: 3rem;
            padding-bottom: 3.5rem;

            max-width: 25%;
            @media screen and (max-width: 992px) {
                max-width: 30%;
            }
            @media screen and (max-width: 768px) {
                max-width: 40%;
            }
                @media screen and (max-width: 523px) {
                max-width: 50%;
            }

        }

        .array-div {
            p {
                margin-bottom: 0.1rem;
            }

            a {
                margin-top: 1rem;
            }
        }

        .welcome-banner {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            color: white;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .player-constellation {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 1rem;
        }

        .player-card {
            background: linear-gradient(45deg, #34495e, #2c3e50);
            color: white;
            padding: 1.5rem;
            border-radius: 0.8rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .player-card:hover {
            transform: translateY(-5px);
        }

        .player-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 1rem;
        }