:root {
    /* Base colors - cyan/teal tech theme */
    --pod-primary: #00d4ff;
    --pod-secondary: #00ff88;
    --pod-bg-dark: #0d1117;
    --pod-bg-card: rgba(16, 22, 35, 0.8);
    --pod-border: rgba(0, 212, 255, 0.3);
    --pod-text-primary: #ffffff;
    --pod-text-secondary: #9fafca;
    --pod-success: #4cd964;
    --pod-warning: #ffcc00;
    --pod-danger: #ff3b30;
    
    /* Calculate RGB values for glow effects */
    --pod-primary-rgb: 0, 212, 255;
    --pod-secondary-rgb: 0, 255, 136;
    
    /* Animation speeds */
    --animation-slow: 3s;
    --animation-normal: 2s;
    --animation-fast: 0.6s;
    
    /* Other variables needed */
    --pod-warning-rgb: 255, 204, 0;
    --pod-success-rgb: 76, 217, 100;
    --pod-danger-rgb: 255, 59, 48;
}

/* Main Container */
.trader-container {
    max-width: 1200px;
    margin: 30px auto 60px;
    padding: 0 15px;
    font-family: 'Exo 2', sans-serif;
}

/* Pod Headers */
.pod-header {
    position: relative;
    background: linear-gradient(135deg, rgba(var(--pod-primary-rgb), 0.2), rgba(var(--pod-secondary-rgb), 0.2));
    border-radius: 16px;
    overflow: hidden;
    color: var(--pod-text-primary);
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.pod-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pod-primary), var(--pod-secondary), transparent);
    z-index: 0;
    animation: scanline 4s linear infinite;
}

.pod-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 60%, rgba(0, 0, 0, 0.4)), 
                url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300d4ff' fill-opacity='0.15' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.header-title-section {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.header-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 36px;
    color: var(--pod-primary);
    animation: pulse var(--animation-slow) infinite alternate;
}

.audio-control {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(15, 20, 35, 0.7);
    border: 1px solid var(--pod-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.audio-control:hover {
    transform: scale(1.1);
    background: rgba(var(--pod-primary-rgb), 0.2);
}

.audio-control i {
    color: var(--pod-primary);
    font-size: 18px;
}

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

.audio-playing {
    animation: pulse-audio 1s ease infinite;
}

.pod-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.pod-title h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, var(--pod-primary), var(--pod-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(var(--pod-primary-rgb), 0.4);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.pod-subtitle {
    text-align: center;
    color: var(--pod-text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
}

.pod-info {
    background-color: rgba(10, 15, 25, 0.7);
    border-radius: 12px;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--pod-border);
    position: relative;
    overflow: hidden;
}

.pod-info-content {
    position: relative;
    z-index: 2;
}

.pod-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-primary-rgb), 0.05) 0%, 
                transparent 50%, 
                rgba(var(--pod-secondary-rgb), 0.05) 100%);
    z-index: 1;
}

.pod-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--pod-primary);
    text-shadow: 0 0 10px rgba(var(--pod-primary-rgb), 0.5);
}

.pod-info p {
    color: var(--pod-text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-bullet {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.info-bullet i {
    color: var(--pod-primary);
    margin-right: 10px;
    margin-top: 3px;
}

.info-bullet-text {
    flex: 1;
}

/* Step Cards */
.steps-wrapper {
    position: relative;
    padding-left: 40px;
}

.step-timeline {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
                var(--pod-primary) 0%, 
                var(--pod-secondary) 50%, 
                var(--pod-primary) 100%);
    opacity: 0.5;
    z-index: 0;
}

.step-card {
    background-color: var(--pod-bg-card);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(var(--pod-primary-rgb), 0.1);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-primary-rgb), 0.05) 0%, 
                transparent 50%, 
                rgba(var(--pod-secondary-rgb), 0.05) 100%);
    z-index: 0;
}

.step-card.active {
    border: 1px solid var(--pod-border);
    transform: translateX(10px);
}

.step-card.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--pod-primary), var(--pod-secondary));
    box-shadow: 0 0 15px rgba(var(--pod-primary-rgb), 0.8);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.step-header-line {
    position: absolute;
    top: 50%;
    left: -40px;
    width: 37px;
    height: 2px;
    background-color: var(--pod-primary);
    opacity: 0.7;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pod-primary), var(--pod-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--pod-bg-dark);
    margin-right: 16px;
    position: relative;
    box-shadow: 0 0 15px rgba(var(--pod-primary-rgb), 0.3);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pod-primary), var(--pod-secondary));
    z-index: -1;
    opacity: 0.3;
}

.step-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--pod-text-primary);
}

.step-content {
    position: relative;
    z-index: 1;
}

/* Game Mode Selector */
.game-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-option {
    background-color: rgba(20, 30, 48, 0.5);
    border: 2px solid rgba(var(--pod-primary-rgb), 0.15);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-primary-rgb), 0.05) 0%, 
                transparent 50%, 
                rgba(var(--pod-secondary-rgb), 0.05) 100%);
    z-index: 0;
}

.game-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(var(--pod-primary-rgb), 0.4);
}

.game-option.selected {
    border-color: var(--pod-primary);
    background-color: rgba(var(--pod-primary-rgb), 0.1);
}

.game-option.selected::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-primary-rgb), 0.1) 0%, 
                transparent 50%, 
                rgba(var(--pod-primary-rgb), 0.1) 100%);
    animation: pulse-light 2s infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.game-icon {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--pod-primary);
    position: relative;
    z-index: 1;
}

.game-option.selected .game-icon {
    animation: pulse var(--animation-normal) infinite alternate;
}

.game-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--pod-text-primary);
    position: relative;
    z-index: 1;
}

/* Dump Instructions */
.dump-info-container {
    margin-top: 20px;
    position: relative;
}

.dump-instructions h3 {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--pod-text-primary);
    margin-bottom: 12px;
}

.dump-instructions ol {
    width: 100%;
    min-height: 200px;
    background-color: rgba(15, 20, 35, 0.7);
    border: 1px solid var(--pod-border);
    border-radius: 10px;
    padding: 15px;
    color: var(--pod-text-primary);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    transition: all 0.3s ease;
}

.dump-instructions ol li {
    outline: none;
    border-color: var(--pod-primary);
    box-shadow: 0 0 0 2px rgba(var(--pod-primary-rgb), 0.2);
}

.dump-instructions {
    color: rgba(255, 255, 255, 0.3);
}

.dump-example {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: var(--pod-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dump-example:hover {
    color: var(--pod-secondary);
    transform: translateY(-2px);
}


/* Dump Notifications */
.dump-notification {
    border-left: 4px solid var(--pod-success);
    background: linear-gradient(135deg, rgba(76, 217, 100, 0.1), rgba(76, 217, 100, 0.05));
    margin-bottom: 15px;
}

.dump-notification .notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.dump-notification .notification-icon.dump-icon {
    background: var(--pod-success);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.dump-notification .notification-title {
    font-weight: 600;
    color: var(--pod-text-primary);
    font-size: 16px;
    flex: 1;
}

.dump-notification .notification-time {
    color: var(--pod-text-secondary);
    font-size: 12px;
}

.dump-notification .notification-message {
    color: var(--pod-text-primary);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.dump-notification .notification-actions {
    display: flex;
    gap: 10px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--pod-success), #45c15a);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: linear-gradient(135deg, #45c15a, var(--pod-success));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 217, 100, 0.4);
    color: white;
    text-decoration: none;
}

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

.download-btn i {
    font-size: 16px;
}

/* Trading Section */
.trade-code-display {
    background-color: rgba(15, 20, 35, 0.8);
    border: 2px solid var(--pod-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.trade-code-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff3c3c' fill-opacity='0.15' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3Ccircle cx='13' cy='13' r='1'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.5;
}

.trade-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.trade-code-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--pod-text-primary);
    display: flex;
    align-items: center;
}

.trade-code-icon {
    font-size: 20px;
    color: var(--pod-primary);
    margin-right: 10px;
    animation: pulse var(--animation-slow) infinite alternate;
}

.trade-code-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 8px;
    background: linear-gradient(to right, var(--pod-primary), var(--pod-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(var(--pod-primary-rgb), 0.6);
}

.notification-feed {
    background-color: rgba(15, 20, 35, 0.8);
    border: 2px solid var(--pod-border);
    border-radius: 12px;
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
    position: relative;
}

.notification-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-primary-rgb), 0.05) 0%, 
                transparent 50%, 
                rgba(var(--pod-secondary-rgb), 0.05) 100%);
    z-index: 0;
}

.notification-feed-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.notification-feed-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--pod-text-primary);
    display: flex;
    align-items: center;
}

.notification-feed-icon {
    font-size: 18px;
    color: var(--pod-primary);
    margin-right: 10px;
}

.notifications-container {
    position: relative;
    z-index: 1;
}

.notification {
    background-color: rgba(30, 40, 60, 0.6);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 3px solid rgba(var(--pod-primary-rgb), 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-primary-rgb), 0.05) 0%, 
                transparent 70%);
    z-index: 0;
}

.notification:hover {
    transform: translateX(5px);
}

.notification.important {
    border-left: 3px solid var(--pod-warning);
    background-color: rgba(var(--pod-secondary-rgb), 0.1);
}

.notification.important::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(var(--pod-warning-rgb), 0.1) 0%, 
                transparent 70%);
    animation: pulse-light 2s infinite alternate;
    z-index: 0;
}

.notification-icon {
    font-size: 22px;
    color: var(--pod-primary);
    margin-top: 3px;
    position: relative;
    z-index: 1;
}

.notification.important .notification-icon {
    color: var(--pod-warning);
    animation: pulse var(--animation-fast) infinite alternate;
}

.notification-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.notification-status {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--pod-primary);
    margin-bottom: 5px;
}

.notification.important .notification-status {
    color: var(--pod-warning);
}

.notification-message {
    font-size: 15px;
    line-height: 1.5;
    color: var(--pod-text-primary);
    margin-bottom: 5px;
}

.notification-time {
    font-size: 12px;
    color: var(--pod-text-secondary);
}

/* Preparing Trade Animation */
.preparing-container {
    text-align: center;
    padding: 60px 20px;
}

.pod-animation {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
}

.pod-animation-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: rgba(var(--pod-primary-rgb), 0.1);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pod-animation-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pod-primary), var(--pod-secondary));
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.pod-animation-icon {
    font-size: 50px;
    color: var(--pod-primary);
    animation: pulse var(--animation-slow) infinite alternate;
}

.pod-animation-rings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px dashed var(--pod-primary);
    animation: rotate 10s linear infinite;
}

.pod-animation-rings:nth-child(2) {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-color: var(--pod-secondary);
    animation-direction: reverse;
    animation-duration: 7s;
}

.pod-animation-rings:nth-child(3) {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-color: var(--pod-primary);
    animation-duration: 13s;
}

.preparing-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--pod-text-primary);
    margin-bottom: 15px;
}

.preparing-subtext {
    color: var(--pod-text-secondary);
    max-width: 400px;
    margin: 0 auto;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.pod-button {
    position: relative;
    background: linear-gradient(to right, 
                rgba(var(--pod-primary-rgb), 0.1), 
                rgba(var(--pod-secondary-rgb), 0.1));
    color: var(--pod-text-primary);
    border: none;
    border-radius: 50px;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 160px;
    height: 50px;
}

.pod-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--pod-primary), var(--pod-secondary));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.pod-button::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    background: linear-gradient(to right, var(--pod-primary), var(--pod-secondary));
    z-index: -1;
}

.pod-button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    background-color: rgba(10, 15, 25, 0.8);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pod-button:hover .pod-button-content {
    background-color: rgba(10, 15, 25, 0.5);
}

.pod-button:hover::before {
    opacity: 0.1;
}

.pod-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.pod-button:disabled::after {
    background: #555;
}

.pod-button:disabled:hover .pod-button-content {
    background-color: rgba(10, 15, 25, 0.8);
}

.pod-button i {
    margin: 0 8px;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.status-badge i {
    margin-right: 5px;
}

.status-queued {
    background-color: rgba(56, 182, 255, 0.1);
    color: #38b6ff;
    border: 1px solid rgba(56, 182, 255, 0.3);
}

.status-processing {
    background-color: rgba(255, 204, 0, 0.1);
    color: var(--pod-warning);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.status-trading {
    background-color: rgba(76, 217, 100, 0.1);
    color: var(--pod-success);
    border: 1px solid rgba(76, 217, 100, 0.3);
}

.status-error {
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--pod-danger);
    border: 1px solid rgba(255, 59, 48, 0.3);
}

/* Status Timeline */
.status-timeline {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.status-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.status-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: rgba(var(--pod-primary-rgb), 0.3);
}

.status-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(var(--pod-primary-rgb), 0.1);
    border: 2px solid rgba(var(--pod-primary-rgb), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.status-step.active .status-icon {
    background-color: rgba(var(--pod-primary-rgb), 0.2);
    border-color: var(--pod-primary);
}

.status-step.active .status-icon i {
    color: var(--pod-primary);
    animation: pulse var(--animation-fast) infinite alternate;
}

.status-step.completed .status-icon {
    background-color: rgba(var(--pod-success-rgb), 0.2);
    border-color: var(--pod-success);
}

.status-step.completed .status-icon i {
    color: var(--pod-success);
}

.status-step.completed:not(:last-child)::after {
    background-color: rgba(var(--pod-success-rgb), 0.4);
}

.status-step.active:not(:last-child)::after {
    background: linear-gradient(to right, 
                rgba(var(--pod-primary-rgb), 0.6), 
                rgba(var(--pod-primary-rgb), 0.1));
}

.status-icon i {
    font-size: 14px;
    color: rgba(var(--pod-primary-rgb), 0.6);
}

.status-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--pod-text-secondary);
}

.status-step.active .status-label {
    color: var(--pod-primary);
    font-weight: 600;
}

.status-step.completed .status-label {
    color: var(--pod-success);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes pulse-light {
    0% { opacity: 0.1; }
    100% { opacity: 0.3; }
}

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

@keyframes scanline {
    0% { transform: translateY(0); opacity: 0.5; }
    50% { opacity: 0.1; }
    100% { transform: translateY(100vh); opacity: 0.5; }
}

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

/* Floating notifications */
.floating-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(15, 20, 35, 0.9);
    border-left: 4px solid var(--pod-primary);
    color: var(--pod-text-primary);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    max-width: 350px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.floating-notification.show {
    transform: translateX(0);
}

.floating-notification.error {
    border-left-color: var(--pod-danger);
}

.floating-notification.muted {
    border-left-color: #888;
}

.floating-notification .notification-icon {
    font-size: 20px;
    color: var(--pod-primary);
}

.floating-notification.error .notification-icon {
    color: var(--pod-danger);
}

.floating-notification.muted .notification-icon {
    color: #888;
}

.floating-notification .notification-message {
    font-size: 14px;
    line-height: 1.4;
}

.notification-enter {
    animation: fadeInSlide 0.5s forwards;
}

/* Custom scrollbar */
.notification-feed::-webkit-scrollbar {
    width: 8px;
}

.notification-feed::-webkit-scrollbar-track {
    background: rgba(15, 15, 25, 0.5);
    border-radius: 8px;
}

.notification-feed::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--pod-primary), var(--pod-secondary));
    border-radius: 8px;
}

.notification-feed::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--pod-secondary), var(--pod-primary));
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .pod-header {
        padding: 20px 15px;
    }
    
    .header-title-section {
        padding: 25px 15px;
    }
    
    .pod-title h1 {
        font-size: 32px;
    }
    
    .pod-subtitle {
        font-size: 16px;
    }
    
    .audio-control {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    .audio-control i {
        font-size: 16px;
    }
    
    .steps-wrapper {
        padding-left: 20px;
    }
    
    .step-header-line {
        left: -20px;
        width: 18px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .game-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trade-code-value {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .pod-button {
        width: 100%;
    }
}

/* Hide steps initially */
#step-2, #step-3 {
    display: none;
}

/* Trading steps */
.trading-step {
    display: none;
}

.trading-step.active {
    display: block;
}

/* Dump Results Section */
.dump-results-section {
    margin-top: 30px;
    background: rgba(28, 32, 46, 0.6);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dump-results-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dump-results-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.dump-results-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00c787, #00ab55);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.dump-results-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dump-result-item {
    background: rgba(44, 48, 62, 0.6);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.dump-result-item:hover {
    background: rgba(44, 48, 62, 0.8);
    transform: translateX(5px);
}

.dump-result-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dump-result-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dump-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dump-result-info {
    flex: 1;
}

.dump-result-name {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.dump-result-time {
    font-size: 13px;
    color: rgba(197, 200, 210, 0.7);
}

.dump-result-action {
    margin-left: auto;
}

.dump-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00c787, #00ab55);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 199, 135, 0.3);
}

.dump-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 199, 135, 0.4);
    color: white;
    text-decoration: none;
}

.dump-download-btn i {
    font-size: 16px;
}
