@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d12 0%, #1a1a24 50%, #0f0f14 100%);
    font-family: 'IBM Plex Sans', sans-serif;
    color: #e8e8ec;
    animation: fadeIn 0.3s ease-out;
}

.back-arrow {
    position: fixed;
    top: 1.25rem;
    left: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    color: #a8a8b8;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-arrow:hover {
    color: #ff8800;
    background: rgba(255, 136, 0, 0.08);
    border-color: rgba(255, 136, 0, 0.2);
}

/* Search trigger button */
.search-trigger {
    position: fixed;
    top: 1.25rem;
    right: calc(2rem + 110px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #a8a8b8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-trigger:hover {
    color: #ff8800;
    background: rgba(255, 136, 0, 0.08);
    border-color: rgba(255, 136, 0, 0.2);
}

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-overlay.search-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 520px;
    padding: 0 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-family: inherit;
    color: #e8e8ec;
    background: rgba(22, 22, 30, 0.97);
    border: 1px solid rgba(255, 136, 0, 0.3);
    border-radius: 12px;
    outline: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: border-color 0.2s ease;
}

.search-input::placeholder {
    color: #6a6a7a;
}

.search-input:focus {
    border-color: #ff8800;
}

.search-results {
    margin-top: 0.5rem;
    max-height: 50vh;
    overflow-y: auto;
    background: rgba(22, 22, 30, 0.97);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.search-results:empty {
    display: none;
}

.search-no-results {
    padding: 1.25rem;
    text-align: center;
    color: #6a6a7a;
    font-size: 0.9rem;
}

.search-section {
    padding: 0.5rem 0;
}

.search-section + .search-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.search-section-title {
    padding: 0.5rem 1.25rem 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6a6a7a;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    color: #e8e8ec;
    transition: background 0.15s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 136, 0, 0.08);
}

.search-result-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.search-result-server-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-result-name {
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    font-size: 0.75rem;
    color: #6a6a7a;
    font-family: monospace;
}

.account-dropdown {
    position: fixed;
    top: 1.25rem;
    right: 2rem;
    z-index: 100;
}

.account-trigger {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #a8a8b8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-trigger:hover,
.account-dropdown:hover .account-trigger {
    color: #ff8800;
    background: rgba(255, 136, 0, 0.08);
    border-color: rgba(255, 136, 0, 0.2);
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    min-width: 180px;
    background: #16161e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.account-dropdown:hover .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: #c8c8d8;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease, color 0.15s ease;
}

.account-menu a:last-child {
    border-bottom: none;
}

.account-greeting {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff8800;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-menu a:hover {
    background: rgba(255, 136, 0, 0.1);
    color: #ff8800;
}

header {
    text-align: center;
    padding: 4rem 2rem 3rem;
}

.site-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 136, 0, 0.3);
    margin-bottom: 2.5rem;
}

.category-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-link {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #a8a8b8;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.category-link:hover {
    color: #ff8800;
    background: rgba(255, 136, 0, 0.08);
}

.category-link:focus {
    outline: 2px solid #ff8800;
    outline-offset: 4px;
}

.listings-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-heading,
.listings-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 0.5rem;
}

.server-listing {
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

.server-listing.placeholder {
    background: rgba(255, 255, 255, 0.02);
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.08);
}

/* Login page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 380px;
    background: rgba(22, 22, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.login-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 1.75rem;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #a8a8b8;
    letter-spacing: 0.03em;
}

.login-form input {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #e8e8ec;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.login-form input::placeholder {
    color: #6a6a7a;
}

.login-form input:focus {
    outline: none;
    border-color: #ff8800;
}

.login-btn {
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.04em;
    color: #0d0d12;
    background: #ff8800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.login-btn:hover {
    background: #ff9922;
}

.create-account-link {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: #8888a0;
    text-decoration: none;
    text-align: center;
    transition: color 0.2s ease;
}

.create-account-link:hover {
    color: #ff8800;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-message-error {
    color: #e87878;
}

.form-message-success {
    color: #78c878;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
}

.form-message-error {
    color: #e87676;
}

.form-message-success {
    color: #6bc46b;
}

/* Create account page - password field with visibility toggle */
.create-account-form {
    gap: 1rem;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 2.75rem;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8888a0;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #ff8800;
}

.password-toggle:focus {
    outline: 2px solid #ff8800;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Account overview page */
.account-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.account-card {
    width: 100%;
    max-width: 520px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.account-page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 2rem;
    text-align: center;
}

.account-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.account-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.account-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8888a0;
}

.account-info-value {
    font-size: 1.1rem;
    color: #e8e8ec;
}

.account-password-masked {
    font-family: monospace;
    letter-spacing: 0.15em;
}

.account-info-hint {
    font-size: 0.8rem;
    color: #6a6a7a;
}

.account-section {
    margin-bottom: 1.75rem;
}

.account-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #a8a8b8;
    margin-bottom: 0.75rem;
}

.account-servers-list {
    min-height: 60px;
}

.account-server-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: #c8c8d8;
}

.account-server-name {
    font-weight: 600;
}

.account-server-category {
    font-size: 0.85rem;
    color: #ff8800;
}

.account-empty-state {
    font-size: 0.9rem;
    color: #6a6a7a;
    font-style: italic;
}

.account-change-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    color: #0d0d12;
    background: #ff8800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.account-change-btn:hover {
    background: #ff9922;
}

.account-edit-hint {
    font-size: 0.8rem;
    color: #6a6a7a;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

/* My Servers page */
.my-servers-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.my-servers-card {
    width: 100%;
    max-width: 480px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.my-servers-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.my-servers-count {
    font-size: 1.1rem;
    color: #a8a8b8;
    text-align: center;
    margin-bottom: 2rem;
}

.my-servers-create-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #0d0d12;
    background: linear-gradient(135deg, #ff8800 0%, #ffaa44 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.35);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.my-servers-create-btn::before {
    content: '+';
    margin-right: 0.5rem;
    font-size: 1.25em;
    font-weight: 700;
    opacity: 0.9;
}

.my-servers-create-btn:hover {
    background: linear-gradient(135deg, #ff9922 0%, #ffbb55 100%);
    box-shadow: 0 6px 24px rgba(255, 136, 0, 0.45);
    transform: translateY(-2px);
}

.my-servers-create-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.3);
}

.my-servers-create-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Server type selection (My Servers page) */
.my-servers-type-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.my-servers-type-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: #ff8800;
    margin-bottom: 1.25rem;
    text-align: center;
}

.my-servers-type-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.my-servers-type-option {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.03em;
    color: #e8e8ec;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.my-servers-type-option:hover {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.15) 0%, rgba(255, 136, 0, 0.06) 100%);
    border-color: rgba(255, 136, 0, 0.4);
    color: #ffaa44;
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.2);
    transform: translateY(-2px);
}

.my-servers-type-option:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.15);
}

/* Upload Minecraft page */
.upload-minecraft-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.upload-minecraft-card {
    width: 100%;
    max-width: 480px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.upload-minecraft-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 2rem;
    text-align: center;
}

.upload-minecraft-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a8a8b8;
    letter-spacing: 0.03em;
}

.upload-field input {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: #e8e8ec;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.upload-field input::placeholder {
    color: #6a6a7a;
}

.upload-field input:focus {
    outline: none;
    border-color: #ff8800;
}

.upload-field-hint {
    font-size: 0.8rem;
    color: #6a6a7a;
}

.upload-verify-row {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.upload-verify-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.03em;
    color: #0d0d12;
    background: linear-gradient(135deg, #ff8800 0%, #e67600 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.3);
}

.upload-verify-btn:hover {
    background: linear-gradient(135deg, #ff9922 0%, #ffaa44 100%);
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.4);
    transform: translateY(-1px);
}

.upload-verify-result {
    font-size: 1rem;
    font-weight: 600;
}

.upload-verify-success {
    color: #6bc46b;
}

.upload-verify-error {
    color: #e87676;
}

.upload-verify-pending {
    color: #a8a8b8;
}

/* Logo upload */
.upload-logo-area {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 1;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.upload-logo-area:hover,
.upload-logo-dragover {
    border-color: rgba(255, 136, 0, 0.4);
    background: rgba(255, 136, 0, 0.04);
}

.upload-logo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #6a6a7a;
    font-size: 0.85rem;
}

.upload-logo-icon {
    font-size: 2rem;
    line-height: 1;
    color: #8888a0;
}

.upload-logo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.upload-logo-error {
    font-size: 0.8rem;
    color: #e87676;
    min-height: 1.2em;
}

/* Description textarea */
.upload-minecraft-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #e8e8ec;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
    max-height: 260px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.upload-minecraft-form textarea:focus {
    outline: none;
    border-color: #ff8800;
}

/* Publish button */
.upload-publish-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: #0d0d12;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
    transition: all 0.25s ease;
}

.upload-publish-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
    transform: translateY(-2px);
}

.upload-publish-message {
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.4em;
    margin-top: 0.5rem;
}

/* Random Servers section (homepage) */
.random-servers-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.random-servers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.random-servers-empty {
    color: #6a6a7a;
    font-style: italic;
    font-size: 0.95rem;
}

.random-server-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.random-server-card:hover {
    background: rgba(255, 136, 0, 0.06);
    border-color: rgba(255, 136, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.random-server-img {
    width: 120px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.random-server-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.random-server-no-img {
    font-size: 0.7rem;
    color: #6a6a7a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.random-server-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.random-server-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e8e8ec;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.random-server-ip {
    font-size: 0.85rem;
    color: #8888a0;
    font-family: monospace;
}

/* Server detail page */
.server-detail-page {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2rem 4rem;
}

.server-detail-card {
    width: 100%;
    max-width: 640px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.server-detail-loading {
    text-align: center;
    color: #8888a0;
    font-size: 1rem;
}

.server-detail-banner {
    width: 100%;
    aspect-ratio: 4 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
}

.server-detail-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.server-detail-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 1rem;
    text-align: center;
}

.server-detail-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-online {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.status-offline {
    background: #e87676;
    box-shadow: 0 0 8px rgba(232, 118, 118, 0.4);
}

.status-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: #c8c8d8;
}

.status-players {
    font-size: 0.9rem;
    color: #8888a0;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.server-detail-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    margin-bottom: 1.75rem;
}

.server-detail-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.server-detail-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8888a0;
}

.server-detail-info-value {
    font-size: 0.95rem;
    color: #e8e8ec;
    font-family: monospace;
    text-align: right;
    word-break: break-all;
}

.server-detail-desc-section {
    padding-top: 0.5rem;
}

.server-detail-desc-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #a8a8b8;
    margin-bottom: 0.75rem;
}

.server-detail-desc-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #c8c8d8;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Server detail links (Discord / Website) */
.server-detail-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.server-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.server-detail-link-discord {
    color: #fff;
    background: #5865f2;
}

.server-detail-link-discord:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.server-detail-link-website {
    color: #e8e8ec;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.server-detail-link-website:hover {
    background: rgba(255, 136, 0, 0.12);
    border-color: rgba(255, 136, 0, 0.3);
    color: #ffaa44;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Optional tag for form labels */
.upload-optional-tag {
    font-size: 0.7rem;
    font-weight: 400;
    color: #6a6a7a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-left: 0.4rem;
}

/* My Servers list */
.my-servers-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.my-server-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    flex-wrap: wrap;
}

.my-server-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.my-server-item-name {
    font-weight: 600;
    color: #e8e8ec;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.my-server-item-meta {
    font-size: 0.8rem;
    color: #8888a0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.my-server-item-unpublished {
    font-size: 0.7rem;
    font-weight: 600;
    color: #e8a050;
    background: rgba(232, 160, 80, 0.12);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.my-server-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.my-server-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.my-server-btn-unpublish {
    color: #e8e8ec;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.my-server-btn-unpublish:hover {
    background: rgba(232, 160, 80, 0.15);
    border-color: rgba(232, 160, 80, 0.3);
    color: #e8a050;
}

.my-server-btn-publish {
    color: #0d0d12;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
}

.my-server-btn-publish:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    transform: translateY(-1px);
}

.my-server-btn-delete {
    color: #e87676;
    background: rgba(232, 118, 118, 0.1);
    border: 1px solid rgba(232, 118, 118, 0.2);
}

.my-server-btn-delete:hover {
    background: rgba(232, 118, 118, 0.2);
    border-color: rgba(232, 118, 118, 0.4);
}

.my-server-btn-edit {
    color: #e8e8ec;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.my-server-btn-edit:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.4);
    color: #8b9cf7;
}

a.my-server-item-name {
    color: #e8e8ec;
    text-decoration: none;
    transition: color 0.15s ease;
}

a.my-server-item-name:hover {
    color: #ff8800;
    text-decoration: underline;
}

/* Browse page */
.browse-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.browse-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 0.06em;
    color: #ff8800;
    text-align: center;
    margin-bottom: 0.25rem;
}

.browse-count {
    text-align: center;
    font-size: 0.9rem;
    color: #8888a0;
    margin-bottom: 2rem;
}

.browse-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.browse-empty {
    text-align: center;
    color: #6a6a7a;
    font-style: italic;
    font-size: 0.95rem;
    padding: 2rem 0;
}

.browse-server-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.browse-server-card:hover {
    background: rgba(255, 136, 0, 0.06);
    border-color: rgba(255, 136, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.browse-server-img {
    width: 130px;
    height: 74px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.browse-server-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.browse-server-no-img {
    font-size: 0.7rem;
    color: #6a6a7a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.browse-server-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
    flex: 1;
}

.browse-server-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e8e8ec;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browse-server-ip {
    font-size: 0.85rem;
    color: #8888a0;
    font-family: monospace;
}

.browse-server-desc {
    font-size: 0.82rem;
    color: #6a6a7a;
    line-height: 1.4;
    margin-top: 0.15rem;
}

/* Server owner link on cards */
.server-owner-link {
    color: #ff8800;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.server-owner-link:hover {
    color: #ffaa44;
    text-decoration: underline;
}

/* Server tags */
.server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.4rem;
}

.server-tag {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #c5a4ff;
    background: rgba(160, 100, 255, 0.15);
    border: 1px solid rgba(160, 100, 255, 0.25);
    border-radius: 999px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.server-detail-tags {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    gap: 0.45rem;
}

.server-detail-tags .server-tag {
    padding: 0.2rem 0.7rem;
    font-size: 0.82rem;
}

.random-server-owner,
.browse-server-owner {
    font-size: 0.78rem;
    color: #6a6a7a;
}

/* Account admin tag */
.account-admin-tag {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ff8800;
    background: rgba(255, 136, 0, 0.12);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
}

/* Notification dot */
.notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #e87676;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(232, 118, 118, 0.6);
}

/* Notifications tab in dropdown */
.account-menu-notif-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c8c8d8;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease, color 0.15s ease;
}

.account-menu-notif-link:hover {
    background: rgba(255, 136, 0, 0.1);
    color: #ff8800;
}

.notif-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: #e87676;
    border-radius: 10px;
    margin-left: 0.5rem;
}

/* Profile page */
.profile-page {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2rem 4rem;
}

.profile-card {
    width: 100%;
    max-width: 600px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.profile-loading {
    text-align: center;
    color: #8888a0;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.profile-username {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    letter-spacing: 0.06em;
    color: #ff8800;
}

.profile-admin-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff8800;
    background: rgba(255, 136, 0, 0.12);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 136, 0, 0.25);
}

.profile-joined {
    font-size: 0.85rem;
    color: #6a6a7a;
    margin-bottom: 2rem;
}

/* Admin controls on profile */
.profile-admin-section {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255, 136, 0, 0.04);
    border: 1px solid rgba(255, 136, 0, 0.15);
    border-radius: 12px;
}

.profile-admin-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #ff8800;
    margin-bottom: 1rem;
}

.profile-admin-btn {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    text-align: center;
    text-decoration: none;
}

.profile-admin-btn-role {
    color: #e8e8ec;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.profile-admin-btn-role:hover {
    background: rgba(88, 101, 242, 0.3);
}

.profile-admin-btn-ban {
    color: #fff;
    background: rgba(232, 118, 118, 0.25);
    border: 1px solid rgba(232, 118, 118, 0.35);
}

.profile-admin-btn-ban:hover {
    background: rgba(232, 118, 118, 0.35);
}

.profile-admin-btn-unban {
    color: #0d0d12;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
}

.profile-admin-btn-unban:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.profile-admin-btn-unpub {
    flex-shrink: 0;
    width: auto;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    color: #e87676;
    background: rgba(232, 118, 118, 0.12);
    border: 1px solid rgba(232, 118, 118, 0.25);
    margin-bottom: 0;
}

.profile-admin-btn-unpub:hover {
    background: rgba(232, 118, 118, 0.22);
}

.profile-ban-info {
    font-size: 0.85rem;
    color: #e8a050;
    background: rgba(232, 160, 80, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.profile-ban-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-ban-form label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a8a8b8;
    letter-spacing: 0.03em;
}

.profile-ban-form input,
.profile-ban-form textarea {
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #e8e8ec;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    resize: vertical;
}

.profile-ban-form input:focus,
.profile-ban-form textarea:focus {
    outline: none;
    border-color: #e87676;
}

.profile-admin-msg {
    font-size: 0.82rem;
    min-height: 1.2em;
    text-align: center;
}

.profile-admin-msg.error {
    color: #e87676;
}

/* Profile servers list */
.profile-servers-section {
    margin-top: 0.5rem;
}

.profile-servers-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #a8a8b8;
    margin-bottom: 0.75rem;
}

.profile-servers-empty {
    font-size: 0.9rem;
    color: #6a6a7a;
    font-style: italic;
}

.profile-server-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.profile-server-card:hover {
    background: rgba(255, 136, 0, 0.06);
    border-color: rgba(255, 136, 0, 0.2);
    transform: translateY(-1px);
}

.profile-server-img {
    width: 80px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-server-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-server-info {
    flex: 1;
    min-width: 0;
}

.profile-server-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8e8ec;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-server-ip {
    font-size: 0.8rem;
    color: #8888a0;
    font-family: monospace;
}

/* Notifications page */
.notif-page {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5rem 2rem 4rem;
}

.notif-card {
    width: 100%;
    max-width: 600px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.notif-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: #ff8800;
}

.notif-mark-read-btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    color: #a8a8b8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.notif-mark-read-btn:hover {
    color: #ff8800;
    background: rgba(255, 136, 0, 0.08);
    border-color: rgba(255, 136, 0, 0.2);
}

.notif-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notif-empty {
    text-align: center;
    color: #6a6a7a;
    font-style: italic;
    padding: 2rem 0;
}

.notif-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: background 0.15s ease;
}

.notif-unread {
    background: rgba(255, 136, 0, 0.05);
    border-color: rgba(255, 136, 0, 0.15);
}

.notif-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    line-height: 1.4;
}

.notif-body {
    flex: 1;
    min-width: 0;
}

.notif-message {
    font-size: 0.9rem;
    color: #e8e8ec;
    line-height: 1.5;
    word-break: break-word;
}

.notif-time {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: #6a6a7a;
}

/* Pro Plan & Bumping page */
.pro-plan-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.pro-plan-card {
    width: 100%;
    max-width: 520px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.pro-plan-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 2.5rem;
}

.pro-plan-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pro-plan-btn {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.pro-plan-btn:hover {
    transform: translateY(-2px);
}

.pro-plan-btn:active {
    transform: translateY(0);
}

.pro-plan-btn-bump {
    color: #0d0d12;
    background: linear-gradient(135deg, #ff8800 0%, #ffaa44 100%);
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.35);
}

.pro-plan-btn-bump:hover {
    background: linear-gradient(135deg, #ff9922 0%, #ffbb55 100%);
    box-shadow: 0 6px 24px rgba(255, 136, 0, 0.45);
}

.pro-plan-btn-monthly {
    color: #e8e8ec;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.15) 100%);
    border: 1px solid rgba(88, 101, 242, 0.4);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.2);
}

.pro-plan-btn-monthly:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.45) 0%, rgba(88, 101, 242, 0.25) 100%);
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 6px 24px rgba(88, 101, 242, 0.3);
}

.pro-plan-btn-lifetime {
    color: #0d0d12;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.pro-plan-btn-lifetime:hover {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
}

/* Bump selection page */
.bump-select-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.bump-select-card {
    width: 100%;
    max-width: 520px;
    background: rgba(22, 22, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.bump-select-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    letter-spacing: 0.06em;
    color: #ff8800;
    margin-bottom: 0.5rem;
}

.bump-select-subtitle {
    font-size: 0.9rem;
    color: #8888a0;
    margin-bottom: 2rem;
}

.bump-select-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bump-select-empty {
    color: #6a6a7a;
    font-style: italic;
    font-size: 0.95rem;
    padding: 1rem 0;
}

.bump-select-server-btn {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 0.03em;
    color: #e8e8ec;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.bump-select-server-btn:hover {
    background: linear-gradient(135deg, rgba(255, 136, 0, 0.15) 0%, rgba(255, 136, 0, 0.06) 100%);
    border-color: rgba(255, 136, 0, 0.4);
    color: #ffaa44;
    box-shadow: 0 4px 16px rgba(255, 136, 0, 0.2);
    transform: translateY(-2px);
}

.bump-select-server-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.bump-select-message {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 1.4em;
}

.bump-select-success {
    color: #6bc46b;
}

.bump-select-error {
    color: #e87676;
}

/* Bumped server cards on homepage */
.bumped-servers-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bumped-servers-empty {
    color: #6a6a7a;
    font-style: italic;
    font-size: 0.95rem;
}
