* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #151520;
    --bg-tertiary: #1e1e2e;
    --accent: #00d4ff;
    --accent-hover: #00b8e6;
    --accent-secondary: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --success: #00ff88;
    --danger: #ff4444;
    --warning: #ffaa00;
    --border: #2a2a3a;
    --glass-bg: rgba(30, 30, 46, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 170, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #151520 50%, #0a0a0f 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Animated grid overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Header with glassmorphism */
header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 18px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    animation: gradient-text 3s ease infinite;
    position: relative;
    z-index: 1;
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Main content grid */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Glassmorphism cards */
.wheel-section,
.terminal-section,
.contract-section,
.spin-evidence {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.wheel-section::before,
.terminal-section::before,
.contract-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.5), 
        transparent
    );
}

.wheel-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wheel-container::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(0, 255, 136, 0.1) 50%, 
        transparent 100%
    );
    z-index: -1;
    animation: rotate-glow 15s linear infinite;
    filter: blur(20px);
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 
        0 0 100px rgba(0, 212, 255, 0.6),
        0 0 150px rgba(0, 255, 136, 0.4),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-primary);
    border: 4px solid rgba(0, 212, 255, 0.5);
    transform-origin: center center;
    will-change: transform;
    transition: all 0.3s ease;
}

#wheel-canvas:hover {
    box-shadow: 
        0 0 120px rgba(0, 212, 255, 0.8),
        0 0 180px rgba(0, 255, 136, 0.6),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.wheel-center {
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 4px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.6), 
        inset 0 0 30px rgba(0, 212, 255, 0.3);
    animation: center-pulse 3s ease-in-out infinite;
}

@keyframes center-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.6), 
            inset 0 0 30px rgba(0, 212, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(0, 212, 255, 0.9), 
            inset 0 0 40px rgba(0, 212, 255, 0.5);
    }
}

.pointer {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 70px solid var(--accent);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8));
    z-index: 20;
    animation: pulse-pointer 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-pointer {
    0%, 100% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
        transform: translateX(-50%) translateY(0);
    }
    50% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 25px rgba(0, 212, 255, 0.9));
        transform: translateX(-50%) translateY(-3px);
    }
}

.spin-button {
    margin-top: 40px;
    padding: 18px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.spin-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.spin-button:hover:not(:disabled)::before {
    left: 100%;
}

.spin-button:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 212, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.spin-button:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.fee-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    text-align: center;
    width: 100%;
}

.fee-text {
    color: var(--accent-secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.fee-text strong {
    color: var(--accent-secondary);
    font-size: 1.2rem;
}

.x-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.x-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.wheel-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: 20px;
}

.info-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.info-stat:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terminal-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.terminal-header h2 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.terminal-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.connection-status {
    font-size: 1.8rem;
    color: var(--danger);
    animation: pulse-dot 2s ease-in-out infinite;
}

.connection-status.connected {
    color: var(--success);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.terminal {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    overflow-y: auto;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 2;
    backdrop-filter: blur(10px);
}

.terminal::-webkit-scrollbar {
    width: 10px;
}

.terminal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.terminal::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.terminal::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.terminal-line {
    margin-bottom: 10px;
    word-wrap: break-word;
    padding: 4px 0;
}

.terminal-line.buy {
    color: var(--success);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.terminal-line.sell {
    color: var(--danger);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}

.terminal-line.system {
    color: var(--text-secondary);
}

.terminal-line.winner {
    color: var(--warning);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.8);
    animation: winner-glow 2s ease-in-out infinite;
}

@keyframes winner-glow {
    0%, 100% { text-shadow: 0 0 15px rgba(255, 170, 0, 0.8); }
    50% { text-shadow: 0 0 25px rgba(255, 170, 0, 1); }
}

.contract-section {
    grid-column: 1 / -1;
    padding: 40px;
}

.contract-display-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.contract-display-section h3 {
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pump-link {
    margin-top: 15px;
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pump-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.ca-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.ca-value {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--accent);
    word-break: break-all;
    font-weight: 600;
}

.copy-btn {
    padding: 10px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    color: var(--accent);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: var(--accent);
    transform: scale(1.1);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.fee-leader-section {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.fee-leader-section h3 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--warning), #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.fee-leader-display {
    min-height: 80px;
}

.fee-leader-item {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 170, 0, 0.4);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.leader-address {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    word-break: break-all;
    font-weight: 600;
}

.leader-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 15px;
}

.leader-fees {
    color: var(--accent-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.leader-percentage {
    color: var(--warning);
    font-weight: 800;
    font-size: 1.2rem;
}

.leader-status {
    padding: 8px 16px;
    background: rgba(255, 170, 0, 0.2);
    border: 1px solid rgba(255, 170, 0, 0.4);
    border-radius: 8px;
    color: var(--warning);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    display: inline-block;
}

.contract-input-group {
    margin-bottom: 40px;
}

.contract-input-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.input-wrapper {
    display: flex;
    gap: 15px;
}

.input-help {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

#contract-address {
    flex: 1;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--glass-border);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#contract-address:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.start-btn, .test-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.start-btn:hover, .test-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.start-btn:active, .test-btn:active {
    transform: translateY(-1px);
}

.test-btn {
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--warning), #ffcc44);
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.test-btn:hover {
    background: linear-gradient(135deg, #ffcc44, var(--warning));
    box-shadow: 0 10px 30px rgba(255, 170, 0, 0.6);
}

.eligible-holders {
    margin-top: 40px;
}

.eligible-holders h3 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.holders-list {
    max-height: 350px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.holders-list::-webkit-scrollbar {
    width: 8px;
}

.holders-list::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 20px;
    font-style: italic;
}

.holder-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.holder-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
    border-left-width: 6px;
}

.holder-item.whale {
    border-left-color: var(--warning);
    background: rgba(255, 170, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
}

.holder-item.whale:hover {
    background: rgba(255, 170, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.5);
}

.holder-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    flex: 1;
    margin-right: 15px;
    word-break: break-all;
}

.holder-percentage {
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.holder-item.whale .holder-percentage {
    color: var(--warning);
    -webkit-text-fill-color: var(--warning);
}

.spin-evidence {
    padding: 40px;
    margin-top: 30px;
}

.spin-evidence h3 {
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.evidence-content {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.evidence-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    background: rgba(0, 212, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.evidence-item {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.evidence-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.evidence-item strong {
    color: var(--text-primary);
}

.evidence-item hr {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .wheel-container {
        width: 400px;
        height: 400px;
    }
    
    #wheel-canvas {
        width: 400px;
        height: 400px;
    }
    
    .title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    header {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .wheel-container {
        width: 300px;
        height: 300px;
    }
    
    #wheel-canvas {
        width: 300px;
        height: 300px;
    }
    
    .terminal-section {
        height: 400px;
    }
    
    .wheel-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spin-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
}
