/* CSS variables for the global design system */
:root {
    --bg-dark: #08090d;
    --bg-card: rgba(16, 18, 27, 0.7);
    --bg-card-hover: rgba(22, 25, 38, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: #00F0FF;
    
    --primary: #7000FF;
    --primary-glow: rgba(112, 0, 255, 0.4);
    --secondary: #00F0FF;
    --secondary-glow: rgba(0, 240, 255, 0.3);
    --success: #00FF87;
    --success-glow: rgba(0, 255, 135, 0.2);
    --danger: #FF0055;
    
    --text-main: #FFFFFF;
    --text-muted: #8E92B2;
    --text-dim: #545875;
    
    --font-sans: 'Outfit', 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-dim);
}

/* Layout Wrapper */
.app-container {
    display: flex;
    flex: 1;
    position: relative;
    padding-top: 70px; /* space for header */
}

/* Top Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(8, 9, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #ffffff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.search-container .search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 16px 10px 42px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
}

.search-container .search-input:focus {
    outline: none;
    border-color: var(--border-focus);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    pointer-events: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wallet-btn {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(0, 240, 255, 0.1));
    border: 1px solid rgba(112, 0, 255, 0.3);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.wallet-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-main);
    box-shadow: 0 0 15px var(--secondary-glow);
    border-color: transparent;
}

/* Sidebar Navigation */
.app-sidebar {
    width: 250px;
    background: rgba(16, 18, 27, 0.4);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
    z-index: 900;
    overflow-y: auto;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
}

.nav-link.active {
    background: linear-gradient(90deg, rgba(112, 0, 255, 0.15) 0%, rgba(0, 240, 255, 0.05) 100%);
    color: var(--secondary);
    border-left: 3px solid var(--secondary);
    padding-left: 13px;
}

.nav-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 40px;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Glassmorphic Container */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition);
}

/* Hero Section */
.hero-card {
    text-align: center;
    max-width: 650px;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(16, 18, 27, 0.8), rgba(8, 9, 13, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #ffffff 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #5200cc);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

/* Form Styles */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.required::after {
    content: " *";
    color: var(--danger);
}

input[type="text"],
input[type="url"],
select,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238E92B2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

select option {
    color: #000000;
    background-color: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload styling */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-dragdrop {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-dragdrop:hover {
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.02);
}

.file-upload-dragdrop i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.file-upload-dragdrop p {
    font-size: 14px;
    color: var(--text-muted);
}

.file-upload-dragdrop p span {
    color: var(--secondary);
    font-weight: 600;
}

.logo-preview-container {
    display: none;
    margin-top: 15px;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.logo-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.logo-filename {
    font-size: 14px;
    color: var(--text-main);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-logo {
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.remove-logo:hover {
    transform: scale(1.1);
}

/* Radio Choice styling */
.radio-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: var(--transition);
}

.radio-option input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--secondary);
}

.radio-option input[type="radio"]:checked {
    border-color: var(--secondary);
}

.radio-option input[type="radio"]:checked::before {
    transform: scale(1);
}

.radio-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Stepper Indicator */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stepper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--border-color);
    z-index: 1;
}

.stepper-progress {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
    transition: var(--transition);
}

.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-indicator.active {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.step-indicator.completed {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
    color: var(--text-main);
}

/* Navigation buttons in Form */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* Phase 3 Summary Cards */
.summary-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--border-color);
}

.summary-title-desc h3 {
    font-size: 18px;
    font-weight: 700;
}

.summary-title-desc p {
    font-size: 13px;
    color: var(--text-muted);
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item-value {
    font-size: 14px;
    color: var(--text-main);
    word-break: break-all;
}

/* Listing Options style (Checkbox) */
.listing-option-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition);
    position: relative;
    display: flex;
    gap: 18px;
}

.listing-option-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.listing-option-card.selected {
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

.listing-option-card.selected.express {
    border-color: var(--primary);
    background: rgba(112, 0, 255, 0.03);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.05);
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.custom-checkbox {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: var(--transition);
}

.custom-checkbox::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--text-main);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.custom-checkbox:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.listing-option-card.express .custom-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox:checked::before {
    transform: scale(1);
}

.listing-option-content {
    flex: 1;
}

.listing-option-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-option-title .badge {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-free {
    background: rgba(142, 146, 178, 0.2);
    color: var(--text-muted);
}

.badge-express {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-main);
    box-shadow: 0 0 10px var(--primary-glow);
}

.listing-option-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Express Listing details styling */
.express-benefits {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    display: none;
}

.listing-option-card.selected.express .express-benefits {
    display: block;
}

.benefit-list {
    list-style: none;
    margin-bottom: 15px;
}

.benefit-list li {
    font-size: 13.5px;
    color: var(--text-main);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-list li i {
    color: var(--success);
}

.payment-methods-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-option-btn {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option-btn:hover {
    border-color: var(--text-muted);
}

.payment-option-btn.active {
    border-color: var(--secondary);
    background: rgba(0, 240, 255, 0.05);
}

.coin-icon-mini {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 4px;
}

.coin-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

.coin-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}

/* Success View / Process.php styles */
.success-card {
    text-align: center;
    max-width: 600px;
    margin-top: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 135, 0.1);
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--success);
    margin: 0 auto 24px auto;
    box-shadow: 0 0 25px var(--success-glow);
}

.payment-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.payment-qr-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 15px;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    padding: 8px;
    border-radius: 8px;
}

.address-copy-box {
    flex: 1;
}

.address-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.address-input-wrapper {
    display: flex;
    gap: 8px;
}

.address-value {
    font-family: monospace;
    font-size: 13px;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy {
    background: var(--secondary);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy:hover {
    background: #00cce6;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Footer spacing */
.footer-text {
    margin-top: auto;
    padding: 30px 0;
    color: var(--text-dim);
    font-size: 12px;
    text-align: center;
}

/* Sidebar Toggle Button */
.sidebar-toggle-btn {
    display: flex;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 22px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Sidebar Backdrop */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sidebar-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Close Button Container inside sidebar */
.sidebar-mobile-header {
    display: none;
}

/* Mobile Search (in sidebar) */
.mobile-search {
    display: none;
}

/* Wide Glass Panel for detailed layouts */
.glass-panel-wide {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition);
}

/* Responsive Table Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 15px;
    border-radius: var(--radius-md);
}

/* Custom Table Styles */
.coin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

.coin-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    user-select: none;
}

.coin-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

.coin-table tbody tr {
    transition: var(--transition);
}

.coin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.coin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Coin Cell info */
.coin-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
}

.coin-table tbody tr:hover .coin-logo {
    transform: scale(1.1);
}

.coin-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.coin-name-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.coin-symbol {
    font-weight: 700;
    color: var(--text-main);
}

.coin-name {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.coin-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.coin-link:hover .coin-name {
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Network Badges */
.badge-net {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-bsc { background: rgba(243, 186, 47, 0.15); color: #F3BA2F; border: 1px solid rgba(243, 186, 47, 0.25); }
.badge-eth { background: rgba(98, 126, 234, 0.15); color: #8C8CFC; border: 1px solid rgba(98, 126, 234, 0.25); }
.badge-sol { background: rgba(20, 241, 149, 0.15); color: #14F195; border: 1px solid rgba(20, 241, 149, 0.25); }
.badge-matic { background: rgba(130, 71, 229, 0.15); color: #8247E5; border: 1px solid rgba(130, 71, 229, 0.25); }
.badge-avax { background: rgba(232, 65, 66, 0.15); color: #E84142; border: 1px solid rgba(232, 65, 66, 0.25); }
.badge-arb { background: rgba(40, 160, 240, 0.15); color: #28A0F0; border: 1px solid rgba(40, 160, 240, 0.25); }
.badge-op { background: rgba(255, 4, 32, 0.15); color: #FF0420; border: 1px solid rgba(255, 4, 32, 0.25); }
.badge-base { background: rgba(0, 82, 255, 0.15); color: #0052FF; border: 1px solid rgba(0, 82, 255, 0.25); }
.badge-robinhood { background: rgba(0, 200, 5, 0.15); color: #00c805; border: 1px solid rgba(0, 200, 5, 0.25); }

/* Price indicator classes */
.price-up {
    color: var(--success);
    font-weight: 600;
}
.price-up::before {
    content: "▲ ";
    font-size: 10px;
    margin-right: 2px;
}

.price-down {
    color: var(--danger);
    font-weight: 600;
}
.price-down::before {
    content: "▼ ";
    font-size: 10px;
    margin-right: 2px;
}

.price-neutral {
    color: var(--text-muted);
}

/* Animations for live updates */
@keyframes row-glow {
    0% { background-color: rgba(0, 240, 255, 0.15); }
    100% { background-color: transparent; }
}

.row-update-flash {
    animation: row-glow 1.2s ease-out;
}

.text-update-flash {
    text-shadow: 0 0 10px var(--secondary);
    transition: text-shadow 0.3s ease;
}

/* Shimmer Loading Placeholder */
.loading-placeholder {
    display: inline-block;
    width: 60px;
    height: 14px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: shimmer-load 1.5s infinite linear;
    border-radius: 3px;
    vertical-align: middle;
}

@keyframes shimmer-load {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .sidebar-toggle-btn {
        display: flex;
    }
    
    .app-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        height: 100vh;
        z-index: 1001; /* above header */
        background: rgba(16, 18, 27, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
        padding: 20px;
    }
    
    .app-sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 15px;
    }
    
    .main-content {
        margin-left: 0;
        padding: 24px;
        width: 100%;
    }
    
    footer {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .app-header {
        padding: 0 16px;
    }
    
    .search-container {
        display: none; /* Hide main search bar in header on mobile/tablet */
    }
    
    .mobile-search {
        display: block;
    }
    
    .wallet-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Sticky first column (Coin) on mobile for side-scroll */
    .coin-table {
        border-collapse: separate;
    }
    
    .coin-table th:first-child,
    .coin-table td:first-child {
        position: sticky;
        left: 0;
        z-index: 10;
        background-color: #10121b; /* Opaque background to hide sliding columns */
        border-right: 1px solid var(--border-color);
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.5);
    }
    
    .coin-table th:first-child {
        z-index: 20;
        background-color: #151722;
    }
    
    /* Ensure hover states are reflected on the sticky first cell */
    .coin-table tbody tr:hover td:first-child {
        background-color: #1a1d2c;
    }
    
    /* Promoted table sticky cell opaque overrides */
    .promoted-table-wrapper .coin-table th:first-child {
        background-color: #14120f !important;
    }
    .promoted-table-wrapper .coin-table td:first-child {
        background-color: #0b0a08 !important;
    }
    .promoted-table-wrapper .coin-table tbody tr:hover td:first-child {
        background-color: #181510 !important;
    }

    /* Mobile responsive columns: only show Coin, Price, and 24h */
    .coin-table th:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(9)),
    .coin-table td:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(9)) {
        display: none !important;
    }
    
    /* Disable sticky first column and reset styling when layout fits on mobile */
    .coin-table th:first-child,
    .coin-table td:first-child,
    .promoted-table-wrapper .coin-table th:first-child,
    .promoted-table-wrapper .coin-table td:first-child {
        position: static !important;
        border-right: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    
    /* Reset header first-child background */
    .coin-table th:first-child,
    .promoted-table-wrapper .coin-table th:first-child {
        background: rgba(255, 255, 255, 0.02) !important;
    }
    
    /* Reset hover state background for first-child on mobile */
    .coin-table tbody tr:hover td:first-child,
    .promoted-table-wrapper .coin-table tbody tr:hover td:first-child {
        background: transparent !important;
    }

    /* Remove wrapper padding on mobile to maximize space */
    .glass-panel-wide {
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* Keep padding on headings inside the panel so they don't touch the borders */
    .glass-panel-wide h2 {
        padding: 15px 12px 0 12px !important;
    }
    
    /* Reduce cell padding on mobile to maximize horizontal space */
    .coin-table th,
    .coin-table td {
        padding: 12px 10px !important;
    }
}

@media (max-width: 600px) {
    .main-content {
        padding: 20px 12px;
    }
    
    .glass-panel {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-navigation {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .form-navigation button,
    .form-navigation a {
        width: 100%;
        justify-content: center;
    }
    
    .payment-qr-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .address-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-copy {
        padding: 12px;
        width: 100%;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-section .logo-text {
        display: none;
    }
}

/* ==========================================================================
   COIN DETAILS VIEW
   ========================================================================== */
.coin-detail-header-card {
    background: rgba(17, 18, 24, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-header-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.detail-header-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
}

.promoted-tag-badge {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    color: #ffaa00;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.boost-badge {
    background: rgba(112, 0, 255, 0.15);
    border: 1px solid rgba(112, 0, 255, 0.4);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.verified-badge-gold {
    color: #ffaa00;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

/* Copy Contract Strip */
.detail-contract-strip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    margin-top: 6px;
    cursor: pointer;
    font-size: 12.5px;
    color: var(--text-muted);
    transition: all 0.2s ease;
    position: relative;
}

.detail-contract-strip:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary);
    color: var(--text-main);
}

.detail-contract-strip.copied {
    border-color: var(--success);
    background: rgba(0, 255, 135, 0.02);
    color: var(--success);
}

.copy-icon-mini {
    font-size: 11px;
    color: var(--text-dim);
    transition: color 0.2s ease;
}

.detail-contract-strip:hover .copy-icon-mini {
    color: var(--secondary);
}

.detail-contract-strip.copied .copy-icon-mini {
    color: var(--success);
}

.copied-tooltip-inline {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--success);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copied-tooltip-inline.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* DEX GRID */
.coin-dex-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.coin-dex-chart-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-subtitle-dex {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 16px;
}

.coin-dex-sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Sidebar Stats Card */
.dex-sidebar-card {
    background: rgba(17, 18, 24, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dex-sidebar-price-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.dex-sidebar-price-header span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dex-sidebar-price-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-top: 4px;
    margin-bottom: 0;
}

.text-glow-cyan {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.dex-changes-row-sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background: rgba(0, 0, 0, 0.15);
    padding: 4px;
    border-radius: 6px;
}

.dex-change-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.dex-change-box.active-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.change-label-mini {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
}

.change-val-mini {
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.dex-stat-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding-bottom: 8px;
}

.dex-stat-card-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-lbl-mini {
    color: var(--text-muted);
}

.stat-val-mini {
    color: var(--text-main);
    font-weight: 600;
}

/* ATH */
.ath-row-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.ath-label-top {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ath-price-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.ath-percent-drop {
    font-size: 12px;
    font-weight: 700;
}

.ath-date-txt {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

/* Pool layout */
.dex-pool-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 6px;
}

.dex-pool-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.dex-pool-info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dex-pool-name-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.dex-pool-liquidity-label {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
}

/* Cyan Boost Buttons */
.btn-boost-cyan {
    background: linear-gradient(135deg, #00f0ff, #0072ff);
    color: #08090d;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px;
    font-weight: 750;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.btn-boost-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.35);
}

.badge-boost {
    background: rgba(8, 9, 13, 0.25);
    color: #08090d;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.btn-promote-gold {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    border-radius: var(--radius-sm);
    padding: 12px;
    font-weight: 750;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-promote-gold:hover {
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

/* Reactions */
.reaction-counters-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.reaction-item {
    background: rgba(17, 18, 24, 0.4);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.reaction-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--secondary);
}

.reaction-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.icon-rocket { color: #ff5500; font-size: 16px; }
.icon-fire { color: #ffaa00; font-size: 16px; }
.icon-flag { color: #ff0055; font-size: 16px; }

/* Action Links Block */
.dex-action-links-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.dex-action-link-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dex-action-link-btn i {
    width: 16px;
    color: var(--text-dim);
}

.dex-action-link-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary);
    color: var(--secondary);
}

.google-search-bar-btn {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    padding: 10px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.google-search-bar-btn:hover {
    border-color: var(--secondary);
    color: var(--text-main);
}

/* FAQ Accordion */
.faq-accordion-item {
    background: rgba(17, 18, 24, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-accordion-header {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.faq-accordion-header:hover {
    color: var(--text-main);
}

.faq-accordion-header i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.faq-accordion-content {
    padding: 0 12px 12px 12px;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
    display: none;
}

.faq-accordion-item.active .faq-accordion-content {
    display: block;
}

.faq-accordion-item.active .faq-accordion-header {
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .coin-dex-grid {
        grid-template-columns: 1fr;
    }
}

/* Promote Modal Styles */
.promote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 9, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.promote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.promote-modal-box {
    background: #12131a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 95%;
    max-width: 550px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.promote-modal-overlay.active .promote-modal-box {
    transform: translateY(0);
}

.promote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
    outline: none;
}

.promote-modal-close:hover {
    color: var(--text-main);
}

.promote-modal-title {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.promote-modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Steps Progress Bar */
.promote-modal-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.promote-modal-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
    transform: translateY(-50%);
}

.promote-step-line-fill {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    z-index: 1;
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.promote-step-dot {
    width: 32px;
    height: 32px;
    background: #12131a;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.promote-step-dot.active {
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 10px rgba(112, 0, 255, 0.4);
    background: var(--primary);
}

.promote-step-dot.completed {
    border-color: var(--success);
    background: var(--success);
    color: #08090d;
}

/* Modal Divider */
.promote-modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promote-modal-divider::before,
.promote-modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promote-modal-divider::before {
    margin-right: 15px;
}

.promote-modal-divider::after {
    margin-left: 15px;
}

/* Package Grid */
.promote-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 24px;
}

.promote-package-card {
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.promote-package-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: #13141a;
    transform: translateY(-2px);
}

.promote-package-card.selected {
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.03);
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.15);
}

.promote-package-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.promote-package-card .boost-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #ffaa00;
    margin-bottom: 8px;
}

.promote-package-card .price-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Outline Section */
.promote-outline-info {
    text-align: center;
    color: #ffaa00;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.promote-preview-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.promote-preview-card {
    background: #0d0e12;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.promote-preview-card.gold-outline {
    border-color: #ffaa00;
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.15);
}

.promote-preview-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.promote-preview-details {
    display: flex;
    flex-direction: column;
}

.promote-preview-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.promote-preview-card.gold-outline .promote-preview-name {
    color: #ffaa00;
}

.promote-preview-symbol {
    font-size: 12px;
    color: #8e92b2;
    line-height: 1.2;
}

.promote-metrics-info {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

/* Phase Panels */
.promote-phase-panel {
    display: none;
}

.promote-phase-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Phase 2 Details */
.promote-payment-details {
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.promote-payment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.promote-payment-row:last-child {
    margin-bottom: 0;
}

.promote-payment-label {
    color: var(--text-muted);
}

.promote-payment-value {
    color: #fff;
    font-weight: 600;
}

.promote-address-copy-box {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.promote-address-input-wrapper {
    display: flex;
    background: rgba(8, 9, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 12px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}

.promote-address-input-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.promote-address-value {
    font-family: monospace;
    font-size: 12px;
    color: #8e92b2;
    word-break: break-all;
    user-select: all;
}

.promote-copy-icon-mini {
    color: var(--text-muted);
    font-size: 14px;
    margin-left: 10px;
}

.promote-copied-tooltip {
    position: absolute;
    bottom: 100%;
    right: 12px;
    background: var(--success);
    color: #08090d;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.promote-copied-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.promote-form-group {
    margin-bottom: 20px;
}

.promote-form-label {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.promote-form-input {
    width: 100%;
    background: rgba(8, 9, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    transition: border-color 0.2s;
}

.promote-form-input:focus {
    border-color: var(--primary);
    outline: none;
}

.promote-btn-group {
    display: flex;
    gap: 12px;
}

.promote-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #08090d;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: opacity 0.2s;
}

.promote-btn-primary:hover {
    opacity: 0.9;
}

.promote-btn-primary:disabled {
    background: #545875;
    color: #8e92b2;
    cursor: not-allowed;
    opacity: 0.6;
}

.promote-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: all 0.2s;
}

.promote-btn-secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Phase 3 Confirmation */
.promote-success-panel {
    text-align: center;
    padding: 20px 0;
}

.promote-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 255, 135, 0.1);
    border: 2px solid var(--success);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 0 25px rgba(0, 255, 135, 0.2);
}

.promote-success-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.promote-success-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Promoted Table Highlight styling */
.glass-panel-wide.promoted-table-wrapper {
    background: rgba(255, 170, 0, 0.02);
    border: 1px solid rgba(255, 170, 0, 0.15);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.03), 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.promoted-table-wrapper .coin-link .coin-symbol {
    color: #ffaa00 !important;
}

.promoted-table-wrapper .coin-table tbody tr {
    background: rgba(255, 170, 0, 0.01) !important;
    border-bottom: 1px solid rgba(255, 170, 0, 0.05);
}

.promoted-table-wrapper .coin-table tbody tr:hover {
    background: rgba(255, 170, 0, 0.03) !important;
}

/* Sidebar Toggle State on Desktop */
@media (min-width: 1025px) {
    .app-sidebar {
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .main-content {
        transition: margin-left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding-left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), padding-right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    footer {
        transition: margin-left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .glass-panel,
    .glass-panel-wide,
    .banners-container,
    .coin-detail-header-card,
    .coin-dex-grid {
        transition: max-width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    body.sidebar-collapsed .app-sidebar {
        transform: translateX(-100%);
    }
    body.sidebar-collapsed .main-content {
        margin-left: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    body.sidebar-collapsed footer {
        margin-left: 0 !important;
    }
    body.sidebar-collapsed .glass-panel,
    body.sidebar-collapsed .glass-panel-wide,
    body.sidebar-collapsed .banners-container,
    body.sidebar-collapsed .coin-detail-header-card,
    body.sidebar-collapsed .coin-dex-grid {
        max-width: 100%;
    }
    
    .glass-panel-wide {
        padding: 15px;
    }
}

/* Blink/Flashing animation for Boost Now badge */
.blink-animation {
    animation: blink-green 1.5s infinite ease-in-out;
}

@keyframes blink-green {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive adjustments for contract address copy strip on mobile */
@media (max-width: 768px) {
    .detail-contract-strip {
        max-width: 100%;
        box-sizing: border-box;
    }
    .detail-contract-strip span#lbl-contract {
        max-width: 200px;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
}
@media (max-width: 600px) {
    .detail-contract-strip span#lbl-contract {
        max-width: 160px;
        font-size: 11px;
    }
}
@media (max-width: 360px) {
    .detail-contract-strip span#lbl-contract {
        max-width: 110px;
        font-size: 10px;
    }
}


