* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #313338;
    --bg-secondary: #2b2d31;
    --bg-tertiary: #1e1f22;
    --bg-card: #2b2d31;
    --bg-hover: #35373c;
    --text-primary: #f2f3f5;
    --text-secondary: #b9bbbe;
    --text-tertiary: #949ba4;
    --accent-primary: #5865f2;
    --accent-secondary: #4752c4;
    --accent-hover: #4752c4;
    --border-color: #1e1f22;
    --error-color: #f23f42;
    --success-color: #23a55a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    background: #000000;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 102px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 100px,
            rgba(255, 255, 255, 0.02) 100px,
            rgba(255, 255, 255, 0.02) 102px
        );
    pointer-events: none;
    z-index: 0;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.875rem 2rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    width: 85%;
    max-width: 1600px;
    min-height: 56px;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.nav-brand-link:hover {
    opacity: 0.8;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .discord-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.nav-brand h1 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #5865f2 0%, #9b59b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content */
.main-content {
    padding: 7rem 0 2rem 0;
    min-height: calc(100vh - 7rem);
    position: relative;
    z-index: 1;
}

.main-content.lookup-page {
    min-height: 100vh;
    padding: 7rem 0 2rem 0;
}

.lookup-section-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 9rem);
}

.main-content.lookup-page .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-content.lookup-page .lookup-card-center {
    position: relative;
    transform: none;
    margin-bottom: 0;
}

.lookup-card-results {
    margin-top: 2rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-container {
    width: 100%;
}

.results-header {
    margin-bottom: 1.5rem;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.card {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-section {
    text-align: center;
    padding: 4rem 0 5rem;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.lookup-card {
    padding: 1.5rem;
}

.lookup-card-center {
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}


.lookup-input-group {
    display: flex;
    gap: 1rem;
}

.lookup-input {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.lookup-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.lookup-input::placeholder {
    color: var(--text-tertiary);
}

.error-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(237, 66, 69, 0.1);
    border: 1px solid var(--error-color);
    border-radius: 6px;
    color: var(--error-color);
    display: none;
}

.error-message.show {
    display: block;
}

.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    flex-shrink: 0;
}

.btn-primary {
    background: rgba(88, 101, 242, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.4);
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(88, 101, 242, 0.3);
    transform: translateY(-2px);
    border-color: rgba(88, 101, 242, 0.6);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--text-secondary);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.link-primary {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.link-primary:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-card {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    height: 160px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #9b59b6 100%);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.profile-card {
    padding: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.profile-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.profile-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    object-fit: cover;
    background-color: var(--bg-tertiary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.profile-badges {
    position: absolute;
    bottom: -4px;
    right: -4px;
    display: flex;
    gap: 0.25rem;
    background-color: var(--bg-card);
    padding: 0.25rem;
    border-radius: 6px;
    border: 3px solid var(--bg-card);
    flex-wrap: wrap;
    max-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.profile-badges-center {
    display: flex;
    gap: 0.625rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
}

.badge {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px;
    box-sizing: border-box;
}

.badge:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.badge[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 0.5rem 0.75rem;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events: none;
}

.badge[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.9);
    z-index: 1001;
}

.badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;
    max-width: 28px;
    max-height: 28px;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-username-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0.75rem;
}

.clan-display-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.clan-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.clan-badge-inline img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.clan-name-inline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.profile-display-name-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.profile-display-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.profile-username-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.profile-username {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.profile-discriminator {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.profile-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.profile-created {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.stats-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0 3rem;
    box-sizing: border-box;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
}

.features-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon .icon {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats-actions {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.stats-card {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.stats-icon {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
}

.stats-icon .icon {
    width: 32px;
    height: 32px;
}

.stats-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stats-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guilds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.guild-card {
    padding: 1rem;
}

.guild-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.guild-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guild-tag-badge {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
}

.guild-id {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-family: 'Courier New', monospace;
}

.colors-card {
    padding: 1rem;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 80px;
}

.color-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    flex: 1;
}

.color-preview {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-tertiary);
}

.info-card {
    padding: 1rem;
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.info-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.info-link:hover {
    text-decoration: underline;
}

.support-card {
    padding: 2rem;
}

.support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.support-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .lookup-input-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-username-container {
        justify-content: center;
    }

    .support-content {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }
}

.badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.badge-staff {
    background-color: #ed4245;
}

.badge-partner {
    background-color: #5865f2;
}

.badge-hypesquad {
    background-color: #f1c40f;
}

.badge-bug-hunter {
    background-color: #23a55a;
}

.badge-bug-hunter-level-2 {
    background-color: #23a55a;
}

.badge-premium {
    background-color: #5865f2;
}

.badge-verified-bot {
    background-color: #5865f2;
}

.badge-verified-developer {
    background-color: #5865f2;
}

.badge-moderator {
    background-color: #5865f2;
}

.badge-nitro {
    background-color: #5865f2;
}

.badge-boost {
    background-color: #9b59b6;
}

.donate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.donate-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-feature-item .icon {
    color: rgba(88, 101, 242, 1);
    flex-shrink: 0;
}

.donate-feature-item span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.crypto-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.crypto-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.crypto-symbol {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    background: rgba(88, 101, 242, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.crypto-address-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
    margin: 0;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: rgba(88, 101, 242, 0.6);
}

.copy-btn .icon {
    width: 16px;
    height: 16px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 50%;
    color: rgba(88, 101, 242, 1);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}
