/* Global Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
}

a {
    color: #f7931a; /* Bitcoin orange */ 
    text-decoration: none;
    font-weight: bold; 
}

a:hover {
    text-decoration: underline;
}

/* Navbar Styling */
.navbar {
    background-color: #1e1e1e;
    border-bottom: 1px solid #4d4d4d;
    padding: 0;
    margin: 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
}

.navbar li {
    float: left;
}

.navbar li a {
    display: block;
    color: #e0e0e0;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: bold;
}

.navbar li a:hover {
    background-color: #333;
}

.navbar li a.active {
    color: #f7931a;
    background-color: #2a2a2a;
}

/* Header Styling */
.header {
    text-align: center;
    background-color: #1e1e1e;
    padding-bottom: 10px;
}

.banner-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.banner {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #4d4d4d;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background-color: #1e1e1e;
    border-radius: 50%;
    border: 4px solid #121212;
    position: absolute;
    bottom: -50px;
    left: 10px;
    object-fit: cover;
}

.profile-info {
    padding: 5px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.profile-info h1 {
    margin: 5px 0;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
}

.profile-info p {
    margin: 5px 0;
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Icon Colors */
.key-icon { color: #fdd835; }
.bolt-icon { color: #f7931a; } /* Bitcoin orange */
.user-check-icon { color: #A915FF; } /* Nostr Purple */

/* Copy Button Styling */
.copy-icon {
    font-size: 0.9em;  
    cursor: pointer;
    margin-left: 5px;  
    color: #ffffff;
    transition: color 0.3s ease;
}

.copy-icon:hover { color: #f7931a; }  /* Bitcoin orange */
.copy-icon.copy-success { color: #28a745; }  /* Green */

/* Main Content */
.main-content {
    text-align: center;
    padding: 20px;
    color: #b0b0b0;
}

.main-content h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 10px 0;
}

.main-content ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.main-content li {
    margin: 10px 0;
}

/* Footer Styling */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #4d4d4d;
}

/* Bip39-Specific Styling */
.bip39-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #4d4d4d;
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="text"] {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #4d4d4d;
    border-radius: 4px;
    background-color: #333;
    color: #e0e0e0;
}

/* Result Message and Copy Button Inline */
.result-message {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-top: 10px;
}

/* Button Styling */
button {
    padding: 10px 10px;
    background-color: #f7931a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
}

/*Boost Button Styling */
.simple-boost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    background-color: #1e1e1e;
    color: #b0b0b0;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #4d4d4d;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s, text-shadow 0.3s;
}

.simple-boost-button:hover {
    color: #f7931a; /* Bitcoin orange text */
    border-color: #f7931a; 
    text-shadow: 0px 0px 5px rgba(247, 147, 26, 0.4); 
}

.simple-boost-button:active {
    color: #ffae42; 
    border-color: #ffae42;
    text-shadow: 0px 0px 8px rgba(255, 174, 66, 0.5);
}

#result {
    display:none;
    border: 1px solid #4d4d4d;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
    margin: 10px auto;
    width: 60%;
    background-color: #1e1e1e;
    border-radius: 8px;
    text-align: center;
}

.word-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
}

.word-list li {
    margin-bottom: 5px;
    color: #e0e0e0;
}

.highlight {
    border-bottom: 2px solid #f7931a;  /* Orange underline */
    color: inherit;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .bip39-container {
        width: 90%;
    }

    input[type="text"] {
        width: 55%;
    }

    #result {
        width: 90%;
    }
}