/* --- General Setup --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    text-align: center;
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 100%;
}

.preview-image {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

h1 {
    margin-bottom: 10px;
}

p {
    color: #aaa;
    margin-bottom: 30px;
}

/* --- Buttons --- */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.2s;
    border: 1px solid #444;
}

.icon-wrapper {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

/* Default (Locked) State */
.button {
    background-color: #333;
    color: #ccc;
}

.button .lock-icon { display: inline-block; }
.button .social-icon { display: none; }

.button:hover {
    transform: translateY(-2px);
    background-color: #444;
}

/* Unlocked (Followed) State */
.button.unlocked {
    background-color: #2e7d32; /* Dark Green */
    color: #fff;
    border-color: #2e7d32;
    cursor: default;
    pointer-events: none; /* Disable link */
}

.button.unlocked .lock-icon { display: none; }
.button.unlocked .social-icon { display: inline-block; }

/* --- Checkbox --- */
.checkbox-container {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px;
}

.checkbox-container input {
    margin-right: 10px;
}

.checkbox-container label {
    color: #aaa;
    font-size: 14px;
}

/* --- Download Button --- */
.download-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    display: none; /* Hidden by default */
}

.download-button:hover {
    background-color: #0056b3;
}
