/* =====================================================
   List Your Coin Portal Styles
   ===================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0D1117;
    color: #E6EDF3;
    min-height: 100vh;
}

a {
    color: #58A6FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* Header */
.header {
    background: #161B22;
    border-bottom: 1px solid #30363D;
    padding: 16px 0;
}

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

.header .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E6EDF3;
    text-decoration: none;
}

.header nav a {
    margin-left: 24px;
    color: #8B949E;
    text-decoration: none;
    transition: color 0.2s;
}

.header nav a:hover {
    color: #FF9B00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #161B22 0%, #0D1117 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #30363D;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FF9B00, #FFE100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override text-fill for the SVG icon span inside h1 */
.hero-coin-icon {
    -webkit-text-fill-color: initial;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.hero p {
    font-size: 1.2rem;
    color: #8B949E;
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero .btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9B00, #FFE100);
    color: #0D1117;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 155, 0, 0.3);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid #FF9B00;
    color: #FF9B00;
}

.btn-outline:hover {
    background: rgba(255, 155, 0, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #FF9B00;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #E6EDF3;
}

.feature-card p {
    color: #8B949E;
    line-height: 1.6;
}

/* Steps */
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9B00, #FFE100);
    color: #0D1117;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h4 {
    margin-bottom: 8px;
}

.step p {
    color: #8B949E;
    font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #FF9B00;
}

.pricing-card.featured::before {
    content: '⚡ FAST TRACK';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF9B00, #FFE100);
    color: #0D1117;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF9B00;
    margin-bottom: 8px;
}

.pricing-card .period {
    color: #8B949E;
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-card ul li {
    padding: 8px 0;
    color: #8B949E;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card ul li::before {
    content: '✓';
    color: #3FB950;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-question:hover {
    background: rgba(255, 155, 0, 0.05);
}

.faq-answer {
    padding: 0 20px 20px;
    color: #8B949E;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, rgba(255, 155, 0, 0.1), rgba(255, 225, 0, 0.05));
    border-top: 1px solid #30363D;
    border-bottom: 1px solid #30363D;
    text-align: center;
}

.cta h2 {
    margin-bottom: 16px;
}

.cta p {
    color: #8B949E;
    margin-bottom: 24px;
}

/* Footer */
.footer {
    background: #161B22;
    padding: 40px 0;
    text-align: center;
    color: #8B949E;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.form-card {
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 24px;
}

.form-card h2 {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #8B949E;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #F85149;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: #0D1117;
    border: 1px solid #30363D;
    border-radius: 8px;
    color: #E6EDF3;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #FF9B00;
}

.form-control::placeholder {
    color: #6E7681;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B949E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.file-upload {
    border: 2px dashed #30363D;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.file-upload:hover {
    border-color: #FF9B00;
}

.file-upload input {
    display: none;
}

.file-upload .icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.file-upload p {
    color: #8B949E;
}

/* Steps Progress */
.steps-progress {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #161B22;
    border: 1px solid #30363D;
    color: #8B949E;
    font-size: 0.9rem;
}

.step-indicator.active {
    background: rgba(255, 155, 0, 0.15);
    border-color: #FF9B00;
    color: #FF9B00;
}

.step-indicator.completed {
    background: rgba(63, 185, 80, 0.15);
    border-color: #3FB950;
    color: #3FB950;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(63, 185, 80, 0.1);
    color: #3FB950;
    border: 1px solid rgba(63, 185, 80, 0.3);
}

.alert-error {
    background: rgba(248, 81, 73, 0.1);
    color: #F85149;
    border: 1px solid rgba(248, 81, 73, 0.3);
}

.alert-warning {
    background: rgba(255, 176, 32, 0.1);
    color: #FFB020;
    border: 1px solid rgba(255, 176, 32, 0.3);
}

.alert-info {
    background: rgba(88, 166, 255, 0.1);
    color: #58A6FF;
    border: 1px solid rgba(88, 166, 255, 0.3);
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.pending {
    background: rgba(255, 176, 32, 0.15);
    color: #FFB020;
}

.status-badge.under_review {
    background: rgba(88, 166, 255, 0.15);
    color: #58A6FF;
}

.status-badge.approved {
    background: rgba(63, 185, 80, 0.15);
    color: #3FB950;
}

.status-badge.rejected {
    background: rgba(248, 81, 73, 0.15);
    color: #F85149;
}

.status-badge.listed {
    background: rgba(63, 185, 80, 0.25);
    color: #3FB950;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #30363D;
}

.data-table th {
    background: #0D1117;
    color: #8B949E;
    font-weight: 500;
    font-size: 0.85rem;
}

.data-table tr:hover {
    background: rgba(255, 155, 0, 0.05);
}

/* Track Status Card */
.track-card {
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 60px auto;
}

.track-card h2 {
    text-align: center;
    margin-bottom: 24px;
}

.tracking-result {
    margin-top: 32px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #30363D;
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #30363D;
}

.timeline-item.active::before {
    background: #FF9B00;
    box-shadow: 0 0 0 4px rgba(255, 155, 0, 0.2);
}

.timeline-item.completed::before {
    background: #3FB950;
}

.timeline-item .time {
    font-size: 0.85rem;
    color: #6E7681;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }
}