/* body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
} */

.title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 40px;
}

.intro-text {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.4em;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    justify-items: center;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.streamer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.streamer-name {
    font-size: 1.8em;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.streamer-image {
    width: 250px;
    height: 250px;
    display: block;
    border-radius: 70%;
    border: 4px solid #ddd;
    object-fit: cover;
    margin-bottom: 20px;
}

.streamer-info {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.info-item {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    width: 100%;
}

.social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.paypal-link {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.social-link {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.2s;
    opacity: 1;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link.twitch {
    background-color: #6441a5;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.facebook {
    background-color: #3b5998;
}

.social-link.paypal {
    background-color: #003087;
}


.button-container {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.join-streamer-button {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.4em;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.join-streamer-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.75s;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.join-streamer-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.join-streamer-button:hover {
    background: linear-gradient(135deg, #0056b3, #003d80);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.join-streamer-button:active {
    background: linear-gradient(135deg, #004494, #002d66);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

