  body {
            font-family: "Roboto Condensed", sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            margin: 0;
            background-color: rgba(0, 0, 0, 0.7); /* Adjust the alpha value for opacity */
            min-height: 100vh;
        }

        .columns {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        h1 {
            font-size: 64px;
            color: #fff;
            margin-top: 20px; /* Add some margin to push the title down a bit */
            z-index: 2; /* Ensure it appears above other elements */
            text-align: center;
        }

        .button {
            border-radius: 25px;
            border: 5px solid white;
            background: #faefff40;
            font-size: 30px;
            font-weight: 900;
            min-width: 80%;
            color: #fff;
            margin: 10px 0;
            width: 100%;
            max-width: 70vw;
            cursor: pointer;
            transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
            text-align: center;
            padding: 10px;
            z-index: 2; /* Ensure it appears above other elements */
           
        }
        .button-first {
             margin-top: 115px;
        }
        

        .card {
            border-radius: 25px;
            border: 5px solid white;
            margin: 10px;
            width: calc(33.333% - 20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: #faefff40;
            z-index: 2; /* Ensure it appears above other elements */
        }

        .card a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #fff;
        }

        .card img {
            margin-bottom: 5px;
        }

        .tiktok:hover {
            background-image: -webkit-linear-gradient(left, #25f4ee, #ee1d52); 
            color: #fff;
        }
        .tiktok:active {
            background-image: -webkit-linear-gradient(right, #25f4ee, #ee1d52); 
            color: #fff;
        }

        .onlyfans:hover {
            background: #ffffffcb; 
            color: #1DA1F2;
        }     

        .onlyfans:active {
            color: #fff;
            background: #1da0f29d;
        }

        .amazon:hover {
            background: #231f20;
            color: #f2bc1c;
        }

        .amazon:active {
            color: #000;
            background: #f2bc1c;
        }

        .instagram:hover {
            background-image: -webkit-linear-gradient(left, #525ece, #9838bd); 
            color: #fff;
        }

        .instagram:active {
            background-image: -webkit-linear-gradient(left, #fec866, #d4307c); 
            color: #fff;
        }
        
        .youtube:hover {
            background: #ff0000; 
            color: #fff;
        }

        .youtube:active {
            background: #ffffff;
            color: #ff0000;
        }

        .facebook:hover {
            background: #3b5998; 
            color: #fff;
        }

        .facebook:active {
            background: #8b9dc3; 
            color: #fff;
        }
        
        .X:hover {
            background: #000; 
            color: #fff;
        }

        .X:active {
            background: #000; 
            color: #fff;
        }

        .snapchat:hover {
            background: #fffc00; 
            color: #000;
        }

        .snapchat:active {
            background: #ffee58; 
            color: #000;
        }

        .kick:hover {
            background: #52c41a; 
            color: #fff;
        }

        .kick:active {
            background: #95de64; 
            color: #fff;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            width: 100%;
            z-index: 2; /* Ensure it appears above other elements */
        }

        .overlay-container {
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            height: 100%;
        }

        .bg-gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(12, 12, 13, 0), rgb(12, 12, 13));
            z-index: 1;
        }

        .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/Michael.webp');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            z-index: 0;
        }

        .exclusive {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-30px);
            }
            60% {
                transform: translateY(-15px);
            }
        }

        .bg {
            background-color: rgb(12, 12, 13);
            padding-top: 20px; /* Add some padding to push the content down */
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        img, .card {
            margin-top: 5px;
        }

        @media (max-width: 600px) {
            .button {
                font-size: 20px;
                width: 90%;
                background-size: cover;
                background-position: center;
            }

            .card {
                width: calc(33.333% - 20px);
                max-width: 90vw;
            }
        }