/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cyberpunk color scheme with neon cyan primary and magenta accents */
    --background: oklch(0.08 0.01 240);
    --foreground: oklch(0.98 0.01 195);
    --card: oklch(0.12 0.02 240);
    --card-foreground: oklch(0.98 0.01 195);
    --popover: oklch(0.1 0.02 240);
    --popover-foreground: oklch(0.98 0.01 195);
    --primary: oklch(0.75 0.18 195);
    --primary-foreground: oklch(0.08 0.01 240);
    --secondary: oklch(0.18 0.02 240);
    --secondary-foreground: oklch(0.98 0.01 195);
    --muted: oklch(0.16 0.02 240);
    --muted-foreground: oklch(0.65 0.02 195);
    --accent: oklch(0.7 0.24 330);
    --accent-foreground: oklch(0.08 0.01 240);
    --destructive: oklch(0.55 0.25 27);
    --destructive-foreground: oklch(0.98 0.01 195);
    --border: oklch(0.22 0.03 240);
    --input: oklch(0.22 0.03 240);
    --ring: oklch(0.75 0.18 195);
    --success: oklch(0.7 0.18 140);
    --success-foreground: oklch(0.08 0.01 240);
    --warning: oklch(0.78 0.17 85);
    --warning-foreground: oklch(0.08 0.01 240);
    --neon-cyan: oklch(0.75 0.18 195);
    --neon-magenta: oklch(0.7 0.24 330);
    --neon-purple: oklch(0.65 0.2 280);
    --neon-green: oklch(0.7 0.18 140);
    --radius: 0.5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    border-bottom: 1px solid var(--border);
    background-color: rgba(8, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--primary);
    border-radius: 0.5rem;
    color: var(--primary-foreground);
}

.logo-img {
    height: 1.75rem;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--foreground);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Wallet Dropdown */
.wallet-dropdown {
    position: relative;
}

.wallet-connected {
    font-family: 'Courier New', monospace;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 14rem;
    background-color: var(--popover);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.wallet-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-label {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    background: none;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: var(--muted);
}

.dropdown-separator {
    height: 1px;
    background-color: var(--border);
    margin: 0.5rem 0;
}

.text-destructive {
    color: var(--destructive);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    background: linear-gradient(to bottom, var(--background), var(--background), rgba(0, 255, 255, 0.05));
    padding: 5rem 1rem 8rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('public/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: saturate(1.2) contrast(1.1);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, oklch(0.22 0.03 240) 1px, transparent 1px),
        linear-gradient(to bottom, oklch(0.22 0.03 240) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 70%, transparent 110%);
    opacity: 0.2;
}

.hero-content {
    position: relative;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.4);
    background-color: rgba(0, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.neon-text {
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-buttons .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons .btn {
        width: auto;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.feature-icon-primary {
    background-color: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: var(--primary);
}

.feature-card:hover .feature-icon-primary {
    background-color: rgba(0, 255, 255, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.feature-icon-accent {
    background-color: rgba(255, 0, 255, 0.1);
    border: 2px solid rgba(255, 0, 255, 0.3);
    color: var(--accent);
}

.feature-card:hover .feature-icon-accent {
    background-color: rgba(255, 0, 255, 0.2);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.feature-icon-success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    color: var(--success);
}

.feature-card:hover .feature-icon-success {
    background-color: rgba(0, 255, 0, 0.2);
    border-color: var(--success);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.feature-title {
    font-weight: 600;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Stats Bar */
.stats-bar {
    border-bottom: 1px solid var(--border);
    background-color: var(--card);
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
}

.stat-icon-primary {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--primary);
}

.stat-icon-success {
    background-color: rgba(0, 255, 0, 0.1);
    color: var(--success);
}

.stat-icon-chart {
    background-color: rgba(150, 100, 255, 0.1);
    color: oklch(0.65 0.2 280);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Bet Board Section */
.bet-board-section {
    padding: 4rem 1rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--muted-foreground);
}

/* Tabs */
.tabs {
    width: 100%;
}

.tabs-list {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.tab-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--muted-foreground);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-trigger:hover {
    color: var(--foreground);
}

.tab-trigger.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.125rem 0.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Bets Grid */
.bets-grid {
    display: grid;
    gap: 1rem;
}

/* Bet Card */
.bet-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.bet-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.bet-card-header {
    padding: 1rem;
    padding-bottom: 1rem;
}

.bet-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.bet-card-title-content {
    flex: 1;
}

.bet-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.bet-card:hover .bet-card-title {
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.bet-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-outline {
    border: 1px solid rgba(0, 255, 255, 0.5);
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.bet-card:hover .badge-outline {
    border-color: var(--primary);
    background-color: rgba(0, 255, 255, 0.2);
}

.badge-live {
    background-color: var(--success);
    color: var(--success-foreground);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: pulse 2s infinite;
}

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

.badge-resolved {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.bet-card-content {
    padding: 0 1rem 1rem;
}

.pool-section {
    margin-bottom: 1rem;
}

.pool-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.pool-label {
    font-weight: 500;
}

.pool-amount {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.pool-bar {
    position: relative;
    height: 0.5rem;
    background-color: var(--muted);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.pool-bar-yes {
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.pool-bar-no {
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.pool-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: width 0.5s;
}

.pool-fill-yes {
    background: linear-gradient(to right, var(--success), oklch(0.75 0.18 140));
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.pool-fill-no {
    background: linear-gradient(to right, var(--accent), oklch(0.75 0.24 340));
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pool-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.prize-pool {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(to right, rgba(0, 255, 255, 0.05), rgba(0, 255, 255, 0.03));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.bet-card:hover .prize-pool {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.prize-pool-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.prize-pool-amount {
    font-family: 'Courier New', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    transition: color 0.3s;
}

.bet-card:hover .prize-pool-amount {
    color: var(--primary);
}

.bet-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-top: 1px solid var(--border);
    background-color: rgba(0, 255, 255, 0.02);
    transition: background-color 0.3s;
}

.bet-card:hover .bet-card-footer {
    background-color: rgba(0, 255, 255, 0.04);
}

.participants-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.btn-join {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-join:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease-out;
}

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

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.modal-close:hover {
    background-color: var(--muted);
    color: var(--foreground);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    justify-content: flex-end;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 6rem;
    resize: vertical;
}

.form-help {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.form-required {
    color: var(--destructive);
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    background-color: var(--muted);
}

.radio-option input[type="radio"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

/* Alerts */
.alert {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert-info {
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--foreground);
}

.alert-warning {
    background-color: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.3);
    color: var(--foreground);
}

.alert-danger {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: var(--foreground);
}

.alert-success {
    background-color: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--foreground);
}

.alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert-value {
    font-family: 'Courier New', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.alert-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Wager Display */
.wager-display {
    background-color: var(--muted);
    padding: 1rem;
    border-radius: var(--radius);
}

.wager-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wager-text {
    color: var(--muted-foreground);
}

/* Card Styles */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.card-content {
    padding: 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.col-span-2 {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .col-span-2 {
        grid-column: span 2;
    }
}

/* Separator */
.separator {
    height: 1px;
    background-color: var(--border);
    margin: 1.5rem 0;
}

/* Info Box */
.info-box {
    margin-bottom: 1rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
}

.info-value-mono {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    background-color: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}

.step-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}
