body {
    background-color: #0f0f11;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.brand-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 20px auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.brand {
    color: #b266ff;
    font-weight: bold;
}

.status {
    margin: 10px 0;
    font-size: 1.1rem;
}

.status.success {
    color: #00ff88;
}

.status.error {
    color: #ff4d4d;
}

.status.tracking {
    color: #ffc107;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    background-color: #6200ea;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    box-shadow: 0 4px 12px rgba(98, 0, 234, 0.4);
}

.btn:hover {
    background-color: #7e3ff2;
}

/* Avatar + Dropdown */
.top-right-avatar-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.top-right-avatar {
    border-radius: 50%;
    height: 42px;
    width: 42px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #7e3ff2;
    box-shadow: 0 0 6px rgba(126, 63, 242, 0.5);
}

.dropdown {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    transition: all 0.2s ease;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #1f1f23;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 140px;
    box-shadow: 0px 8px 14px rgba(0, 0, 0, 0.3);
    z-index: 20;
    overflow: hidden;
}

.user-profile {
    position: absolute;
    top: 20px;
    right: 20px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 8px #6c2bd9;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
}

.dropdown-menu a:hover {
    background-color: #333;
}


.dropdown.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #ddd;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background-color: #2e2e33;
    color: #fff;
}

/* Landing-specific */
.logo-large {
    width: 160px;
    margin-top: 40px;
}

.landing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
}

.landing-main {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    margin-bottom: 40px;
}

.feature h2 {
    color: #b266ff;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}
.settings-container {
    max-width: 800px;
    margin: 60px auto 40px;
    padding: 30px;
    background-color: #121212;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.settings-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: white;
}

.settings-form input[type="text"],
.settings-form input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: 1px solid #999;
    background-color: #1c1c1c;
    color: white;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.rewards-section {
    margin-top: 40px;
    text-align: center;
}

.rewards-section h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.reward-button {
    display: inline-block;
    background-color: #6c2bd9;
    color: white;
    padding: 10px 14px;
    margin: 5px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

.reward-button.selected {
    background-color: #03dac6;
}

.save-btn {
    display: block;
    margin: 30px auto 0;
    background-color: #6c2bd9;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}
