body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    text-align: center;
    color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 32px;
    color: #4caf50;
    font-weight: bold;
}

.highlight {
    color: #ffcc00;
}

.subtitle {
    font-size: 18px;
    color: #cccccc;
    margin: 20px 0;
    line-height: 1.6;
}

.images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.image {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.image:hover {
    transform: scale(1.05);
}

.download-link {
    text-decoration: none;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.download-btn:hover {
    background: linear-gradient(135deg, #66bb6a, #388e3c);
    transform: scale(1.05);
}

.download-btn:active {
    transform: scale(1.1);
    background: linear-gradient(135deg, #66bb6a, #388e3c);
}

.image:active {
    transform: scale(1.05);
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.terms-link {
    margin-top: 20px;
}

.terms-text {
    color: #ffcc00;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.terms-text:hover {
    color: #aca991;
    transform: scale(1.05);
    opacity: 0.85;
}

/* --- Social Icons Section --- */
.social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.instagram {
    background-image: url('https://cdn-icons-png.flaticon.com/512/1384/1384063.png');
}

.tiktok {
    background-image: url('https://cdn-icons-png.flaticon.com/512/3046/3046121.png');
}

.facebook {
    background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png');
}

.youtube {
    background-image: url('https://cdn-icons-png.flaticon.com/512/1384/1384060.png');
}

.discord {
    background-image: url('https://cdn-icons-png.flaticon.com/512/5968/5968756.png');
}
