/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark Mode Background */
body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    flex-direction: column;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Button Styles */
button {
    padding: 15px 30px;
    margin: 10px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Play Button */
.play-button {
    background-color: #28a745;
    color: white;
    font-weight: bold;
}

.play-button:hover {
    background-color: #34d058;
}

/* Social Media Buttons */
.social-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.social-button {
    margin: 10px;
    padding: 15px 25px;
    font-size: 1.2rem;
    color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Social Button Colors */
.discord {
    background-color: #5865F2;
}

.discord:hover {
    background-color: #7983f5;
}

.tiktok {
    background-color: #333;
}

.tiktok:hover {
    background-color: #444;
}

.youtube {
    background-color: #FF0000;
}

.youtube:hover {
    background-color: #FF3333;
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #30e580;
}

.telegram {
    background-color: #0088CC;
}

.telegram:hover {
    background-color: #33a9e6;
}

/* Install Section */
.install-section {
    margin-top: 50px;
}

.install-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3742fa;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.install-button:hover {
    background-color: #5352ed;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .social-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .social-button {
        width: 80%;
    }
}
