/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure full viewport height */
    overflow: hidden; /* Prevent scrollbars due to gradient */
    position: relative; /* For stacking context with gradient */
    color: #fff; /* Default text color for contrast */
}

/* Background gradient */
.background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-60deg, #8a8a8a, #000);
    z-index: -1; /* Place behind other content */
}

/* Main container */
.container {
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white background */
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); /* Subtle shadow */
    text-align: center;
    width: 90%; /* Responsive width */
    max-width: 500px; /* Max width for larger screens */
    border: 1px solid rgba(255, 255, 255, 0.18); /* Light border */
}

/* Title styling */
.title {
	font-family: "Permanent Marker", cursive;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 30px;
	margin-top: -15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add text shadow for better readability */
}

.play-text {
    color: #007bff; /* Blue color for 'Play' */
}

.kit-text {
    color: #ffa500; /* Orange color for 'Kit' */
}

/* Social buttons container */
.social-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 15px; /* Space between buttons */
}

/* Individual social button styling */
.social-button {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 150px; /* Minimum width for consistency */
}

.social-button i, .social-button .kick-icon {
    margin-right: 10px;
    font-size: 1.3em;
}

/* Specific button colors and hover effects */
.github { background-color: #333; }
.github:hover { background-color: #555; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.discord { background-color: #7289DA; }
.discord:hover { background-color: #8c9eff; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.reddit { background-color: #FF4500; }
.reddit:hover { background-color: #ff6a24; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.youtube { background-color: #FF0000; }
.youtube:hover { background-color: #ff3333; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.kick { background-color: #53b34b; }
.kick:hover { background-color: #6ed163; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.cloud { background-color: #9d0aa2; }
.cloud:hover { background-color: #a547a8; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }

.kick-icon {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    vertical-align: middle;
    border-radius: 4px; /* Optional: subtle rounding for the icon */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
        width: 95%; /* Adjust width for smaller screens */
    }

    .title {
        font-size: 2.5em; /* Smaller title on mobile */
    }

    .social-button {
        width: 100%; /* Full width buttons on very small screens */
        min-width: unset; /* Remove min-width to allow full width */
    }
}
