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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 414px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

/* Animated gradient orbs */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.07) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(5, 150, 105, 0.05) 0%, transparent 40%);
    animation: orbFloat 30s ease-in-out infinite;
    z-index: -1;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-30px, -50px) scale(1.1) rotate(90deg); }
    50% { transform: translate(50px, -30px) scale(0.9) rotate(180deg); }
    75% { transform: translate(-20px, 30px) scale(1.05) rotate(270deg); }
}



/* Header */
.header {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

.site-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Risk Info Button */
.risk-info-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.risk-info-btn:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.2);
}

.risk-icon {
    font-size: 16px;
}

.risk-text {
    font-size: 14px;
    font-weight: 500;
}

/* Main Content */
.container {
    flex: 1;
    padding: 20px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

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

.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0, 123, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.main-title {
    font-size: 38px;
    font-weight: 200;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: #a0a0b2;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

/* Section Header */
.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Exchange Tabs */
.exchange-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
    color: #ffffff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00cc00);
}



/* Exchange Form */
.exchange-form {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 32px 24px;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.exchange-form::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.exchange-form::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.input-group {
    margin-bottom: 20px;
    position: relative;
    animation: slideIn 0.6s ease-out backwards;
}

.input-group:nth-child(1) {
    animation-delay: 0.1s;
}

.input-group:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.input-group label {
    display: block;
    color: #8b8b9f;
    font-size: 14px;
    margin-bottom: 10px;
}

.dual-input-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-wrapper.primary {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.08) 0%, rgba(0, 255, 0, 0.04) 100%);
    border: 2px solid rgba(0, 255, 0, 0.3);
}

.input-wrapper.primary:hover {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.input-wrapper.primary:focus-within {
    border-color: rgba(0, 255, 0, 0.7);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}

.usd-input {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.input-wrapper .usd-symbol {
    font-size: 28px;
    color: #00ff00;
    font-weight: 700;
    margin-right: 8px;
}

.crypto-equivalent {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 14px;
    color: #a0a0b2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-equivalent:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.crypto-amount {
    font-weight: 600;
    color: #ffffff;
}

.crypto-emoji {
    font-size: 20px;
    font-weight: 700;
    color: #00ff00;
}

.crypto-code {
    font-weight: 500;
}

.change-crypto {
    margin-left: auto;
    font-size: 12px;
    color: #8b8b9f;
}

/* Address Input */
.address-input-container {
    margin-top: 16px;
}

.address-label {
    display: block;
    color: #8b8b9f;
    font-size: 14px;
    margin-bottom: 8px;
}

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

.address-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-family: monospace;
    outline: none;
    transition: all 0.3s ease;
}

.address-input:focus {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.15);
}

.paste-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #a0a0b2;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.paste-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.input-wrapper:hover {
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.input-wrapper:focus-within {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.amount-input {
    flex: 1;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    outline: none;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.currency-selector:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.crypto-icon {
    width: 24px;
    height: 24px;
}

.dropdown-arrow {
    font-size: 12px;
    color: #8b8b9f;
}

.lock-icon {
    font-size: 16px;
}

/* Exchange Rate */
.exchange-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    margin: 16px -8px;
    font-size: 14px;
    color: #a0a0b2;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.refresh-btn {
    background: none;
    border: none;
    color: #00ff00;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

/* Exchange Button */
.exchange-btn {
    width: 100%;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
    border: none;
    padding: 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3),
                0 0 40px rgba(0, 255, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3),
                    0 0 40px rgba(0, 255, 0, 0);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 255, 0, 0.5),
                    0 0 60px rgba(0, 255, 0, 0.2);
    }
}

/* Modern hover effects for all interactive elements */
button, .clickable, input, .crypto-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover, .clickable:hover {
    transform: translateY(-2px);
}

/* Glassmorphism enhancement */
.modal-content, .popup-box, .risk-modal .modal-content {
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    background: rgba(26, 26, 46, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern input focus effects */
input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1),
                0 0 20px rgba(0, 255, 0, 0.2);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 0, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 0, 0.7);
}

.btn-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-amount {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.exchange-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.exchange-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 0, 0.4);
}

.exchange-btn:hover::before {
    width: 300px;
    height: 300px;
}

.exchange-btn:active {
    transform: translateY(0);
}

/* Recent Transactions Section */
.recent-transactions-section {
    margin-bottom: 30px;
}

.recent-transactions-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-transactions-section h3::before {
    content: '📋';
    font-size: 18px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.transaction-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.transaction-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.5), transparent);
    transition: left 0.6s ease;
}

.transaction-item:hover {
    border-color: rgba(0, 182, 122, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 182, 122, 0.1);
}

.transaction-item:hover::before {
    left: 0;
}

.transaction-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.transaction-pair {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-from, .crypto-to {
    display: flex;
    align-items: center;
    gap: 6px;
}

.transaction-pair .crypto-emoji {
    font-size: 18px;
    color: #00b67a;
}

.transaction-pair .crypto-symbol {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.transaction-pair .crypto-amount {
    font-size: 13px;
    color: #8b8b9f;
    font-weight: 500;
}

.transaction-pair .arrow {
    color: #00ff00;
    font-size: 16px;
    font-weight: 600;
}

.transaction-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.transaction-status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.transaction-status.failed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes newTransaction {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        box-shadow: 0 0 0 rgba(0, 212, 170, 0);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 20px rgba(0, 212, 170, 0.1);
    }
}

.transaction-item.new-transaction {
    border-color: rgba(0, 212, 170, 0.5) !important;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 212, 170, 0.04) 100%) !important;
}

.transaction-item.new-transaction::before {
    left: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.8), transparent) !important;
}

.transaction-size {
    font-size: 14px;
    margin-left: 8px;
    opacity: 0.8;
    cursor: help;
}

.transaction-item.transaction-whale,
.transaction-item.transaction-mega {
    border-color: rgba(255, 215, 0, 0.4) !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 215, 0, 0.03) 100%) !important;
}

.transaction-item.transaction-whale::before,
.transaction-item.transaction-mega::before {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.6), transparent) !important;
}

.transaction-item.transaction-large {
    border-color: rgba(138, 43, 226, 0.3) !important;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(138, 43, 226, 0.02) 100%) !important;
}

.transaction-item.transaction-medium {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.transaction-time {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.transaction-value {
    font-size: 16px;
    font-weight: 700;
    color: #00ff00;
    text-align: right;
    min-width: fit-content;
}

.view-all-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00ff00;
    padding: 14px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-all-btn::after {
    content: '↗';
    font-size: 16px;
}

.view-all-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
}

/* Trustpilot Section */
.trustpilot-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.trustpilot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff00, #00cc00, #00ff00);
    animation: trustpilotShine 3s ease-in-out infinite;
}

@keyframes trustpilotShine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.trustpilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trustpilot-text {
    font-size: 20px;
    font-weight: 700;
    color: #00ff00;
    letter-spacing: -0.5px;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.filled {
    color: #00ff00;
}

.star.half {
    background: linear-gradient(90deg, #00ff00 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 14px;
    color: #a0a0b2;
    font-weight: 500;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.review-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    animation: reviewFadeIn 0.5s ease-out;
}

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

.review-item:hover {
    border-color: rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    flex-shrink: 0;
}

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

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    background: #00ff00;
    color: #000000;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 50%;
    line-height: 1;
}

.review-date {
    font-size: 12px;
    color: #8b8b9f;
}

.review-rating .stars {
    gap: 1px;
}

.review-rating .star {
    font-size: 14px;
}

.review-content {
    margin-top: 8px;
}

.review-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.review-text {
    font-size: 13px;
    color: #c0c0c0;
    line-height: 1.5;
    margin: 0;
}

.trustpilot-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00ff00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trustpilot-link:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.5);
    transform: translateY(-1px);
}

.trustpilot-link::after {
    content: '↗';
    font-size: 12px;
}

/* Image Section */
.image-section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.image-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    animation: imageFloat 0.6s ease-out;
    max-width: 100%;
    margin: 0 auto;
}

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

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    animation: imageShine 3s ease-in-out infinite;
}

@keyframes imageShine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    object-position: center;
}

.featured-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.2);
}

.image-container:hover {
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
}

/* Desktop/Computer Responsive Design */
@media (min-width: 415px) {
    body {
        max-width: 800px; /* Expand for larger screens */
    }
    
    .image-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .image-container {
        padding: 30px;
        border-radius: 24px;
        max-width: 760px;
    }
    
    .featured-image {
        border-radius: 16px;
        max-height: 400px; /* Prevent image from being too tall on desktop */
    }
}

@media (min-width: 768px) {
    body {
        max-width: 1200px; /* Even wider for tablets/small laptops */
    }
    
    .image-section {
        padding: 40px 30px;
        margin-bottom: 50px;
    }
    
    .image-container {
        padding: 40px;
        border-radius: 28px;
        max-width: 1000px;
    }
    
    .featured-image {
        border-radius: 20px;
        max-height: 500px;
    }
    
    .featured-image:hover {
        transform: scale(1.01); /* Smaller scale on larger screens */
    }
}

@media (min-width: 1024px) {
    body {
        max-width: 1400px; /* Full desktop width */
    }
    
    .image-section {
        padding: 50px 40px;
        margin-bottom: 60px;
    }
    
    .image-container {
        padding: 50px;
        border-radius: 32px;
        max-width: 1200px;
    }
    
    .featured-image {
        border-radius: 24px;
        max-height: 600px;
    }
}

@media (min-width: 1440px) {
    body {
        max-width: 1600px; /* Large desktop screens */
    }
    
    .image-container {
        max-width: 1400px;
        padding: 60px;
    }
    
    .featured-image {
        max-height: 700px;
    }
}

/* Buy Crypto Section */
.buy-crypto-section {
    margin-bottom: 80px;
}

.buy-crypto-section h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #8b8b9f;
}

.payment-options {
    display: flex;
    gap: 15px;
}

.payment-option {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option:hover {
    border-color: rgba(0, 1, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 1, 0, 0.2);
}

.payment-option img {
    height: 20px;
    width: auto;
}

.trustpilot {
    color: #000100;
    font-size: 14px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 80px; /* Increased from 40px to avoid bottom bar */
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 15px;
    width: calc(100% - 40px);
    max-width: 374px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensure it's above other elements */
}

.cookie-notice p {
    font-size: 14px;
    margin-bottom: 15px;
}

.cookie-notice a {
    color: #000100;
    text-decoration: none;
}

.accept-btn {
    width: 100%;
    background-color: #000100;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 3px;
    margin-bottom: 8px;
}

/* Currency Dropdown */
.currency-dropdown {
    position: fixed;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    min-width: 200px;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9);
}

.currency-option:hover {
    background: rgba(0, 1, 0, 0.1);
    color: #000100;
}

.currency-icon {
    font-size: 20px;
}

/* Crypto Selection Modal */
.crypto-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
}

.crypto-search {
    margin-bottom: 20px;
}

.crypto-search-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.crypto-search-input:focus {
    border-color: rgba(0, 1, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 1, 0, 0.2);
}

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.crypto-item:hover {
    background: rgba(0, 1, 0, 0.1);
    border-color: rgba(0, 1, 0, 0.3);
    transform: translateX(4px);
}

.crypto-item img {
    width: 40px;
    height: 40px;
}

.crypto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.crypto-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.crypto-symbol {
    font-size: 14px;
    color: #8b8b9f;
}

.crypto-price {
    font-size: 16px;
    font-weight: 600;
    color: #000100;
}

/* Modals */
.risk-modal, .crypto-modal, .payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
}

/* Payment Popup */
.payment-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.payment-popup[style*="block"] {
    display: flex !important;
}

.popup-box {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    border: 2px solid #00d4aa;
    box-shadow: 0 0 40px rgba(0, 212, 170, 0.3);
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #8b8b9f;
    font-size: 30px;
    cursor: pointer;
}

.popup-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.popup-box h2 span {
    color: #00d4aa;
}

.amount-box {
    background: rgba(0, 212, 170, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.big-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 5px;
}

.usd-value {
    color: #8b8b9f;
    font-size: 16px;
}

.address-section {
    margin-bottom: 20px;
}

.address-section label {
    display: block;
    color: #8b8b9f;
    margin-bottom: 10px;
}

.address-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-box span {
    flex: 1;
    font-family: monospace;
    font-size: 12px;
    word-break: break-all;
}

.address-box button {
    background: #000100;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.qr-code-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-code {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.qr-code img {
    display: block;
    width: 200px;
    height: 200px;
}

.scan-text {
    color: #8b8b9f;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Confirmation Loading State */
.confirmation-state {
    margin-top: 30px;
    text-align: center;
}

.loading-spinner {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 170, 0.1);
    border-top: 4px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.confirmation-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.confirmation-state p {
    color: #8b8b9f;
    margin-bottom: 20px;
}

.confirmation-progress {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #8b8b9f;
    transition: all 0.3s ease;
}

.progress-circle.active {
    background: #00d4aa;
    border-color: #00d4aa;
    color: #ffffff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.progress-item span {
    font-size: 12px;
    color: #8b8b9f;
}

.confirmation-note {
    font-size: 13px;
    color: #8b8b9f;
    margin-top: 20px;
}

.warning {
    background: rgba(255, 68, 68, 0.1);
    color: #ff9999;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.done-btn {
    width: 100%;
    background: #000100;
    border: none;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.back-btn {
    background: none;
    border: none;
    color: #000100;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.payment-body {
    padding: 20px;
}

.payment-instructions {
    text-align: center;
    margin-bottom: 24px;
}

.payment-instructions h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.payment-instructions h3 span {
    color: #00d4aa;
    font-weight: 700;
}

.payment-instructions p {
    color: #8b8b9f;
    font-size: 14px;
}

.send-crypto-box {
    background: rgba(0, 212, 170, 0.05);
    border: 2px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.amount-to-send {
    text-align: center;
    margin-bottom: 20px;
}

.send-label {
    display: block;
    color: #8b8b9f;
    font-size: 14px;
    margin-bottom: 8px;
}

.send-amount-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.crypto-amount-large {
    font-size: 36px;
    font-weight: 700;
    color: #00d4aa;
}

.crypto-symbol {
    font-size: 24px;
    font-weight: 600;
    color: #00d4aa;
}

.usd-equivalent {
    font-size: 14px;
    color: #8b8b9f;
}

.wallet-address-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.address-label {
    display: block;
    font-size: 14px;
    color: #8b8b9f;
    margin-bottom: 8px;
}

.address-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.address-text {
    flex: 1;
    font-family: monospace;
    font-size: 12px;
    color: #ffffff;
    word-break: break-all;
}

.copy-btn {
    background: rgba(0, 1, 0, 0.2);
    border: 1px solid rgba(0, 1, 0, 0.3);
    color: #000100;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(0, 1, 0, 0.3);
}

.exchange-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.info-item span {
    color: #8b8b9f;
    font-size: 14px;
}

.info-item strong {
    color: #ffffff;
    font-size: 14px;
}

.payment-timer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #8b8b9f;
}

.timer {
    display: inline-block;
    margin-left: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #00d4aa;
}

.confirmation-notice {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.notice-icon {
    font-size: 20px;
}

.confirmation-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ffaaaa;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #252547 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #8b8b9f;
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.modal-body {
    padding: 24px;
}

.warning-notice {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.warning-notice p {
    margin: 0;
    color: #ffaaaa;
    line-height: 1.6;
    font-size: 14px;
}

.risk-section, .tips-section {
    margin-bottom: 24px;
}

.risk-section h3, .tips-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.risk-section ul, .tips-section ul {
    list-style: none;
    padding: 0;
}

.risk-section li, .tips-section li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #c0c0c0;
    line-height: 1.6;
}

.risk-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-size: 20px;
}

.tips-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00d4aa;
    font-size: 20px;
}



.modal-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.understand-btn {
    width: 100%;
    background: linear-gradient(135deg, #000100 0%, #000000 100%);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.understand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 1, 0, 0.4);
}

/* Responsive adjustments */
@media (min-width: 415px) {
    body {
        max-width: 800px;
    }
    
    .main-title {
        font-size: 42px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .exchange-form {
        padding: 40px 30px;
    }
    
    .modal-content {
        margin: 20px;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    body {
        max-width: 1200px;
    }
    
    .container {
        padding: 30px;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 22px;
    }
    
    .exchange-form {
        padding: 50px 40px;
        margin-bottom: 40px;
    }
    
    .recent-transactions-section,
    .trustpilot-section,
    .buy-crypto-section {
        margin-bottom: 40px;
    }
    
    .modal-content {
        max-width: 700px;
    }
}

@media (min-width: 1024px) {
    body {
        max-width: 1400px;
    }
    
    .container {
        padding: 40px;
    }
    
    .main-title {
        font-size: 52px;
    }
    
    .subtitle {
        font-size: 24px;
    }
    
    .exchange-form {
        padding: 60px 50px;
        margin-bottom: 50px;
    }
    
    .recent-transactions-section,
    .trustpilot-section,
    .buy-crypto-section {
        margin-bottom: 50px;
    }
    
    .modal-content {
        max-width: 800px;
    }
}

@media (min-width: 1440px) {
    body {
        max-width: 1600px;
    }
    
    .container {
        padding: 50px;
    }
    
    .main-title {
        font-size: 56px;
    }
    
    .exchange-form {
        padding: 70px 60px;
    }
    
    .modal-content {
        max-width: 900px;
    }
}