.register-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.register-content {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 82, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 82, 255, 0.1);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    gap: 0.5rem;
}

.step-bar {
    height: 4px;
    flex: 1;
    max-width: 150px;
    background: rgba(0, 82, 255, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.step-bar.active {
    background: linear-gradient(135deg, #0052FF 0%, #00D4FF 100%);
    box-shadow: 0 2px 8px rgba(0, 82, 255, 0.3);
}

/* Register Steps */
.register-step {
    display: none;
}

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

.step2-content {
    background: white;
    border: 1px solid rgba(0, 82, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 82, 255, 0.1);
}

.register-header {
    margin-bottom: 2.5rem;
}

.trust-logo-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trust-icon-header {
    width: 60px;
    height: 60px;
}

.event-details {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 82, 255, 0.1);
    justify-content: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    white-space: nowrap;
}

.detail-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .event-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-details {
        gap: 0.6rem;
    }

    .detail-item {
        font-size: 0.85rem;
    }
}

.register-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.register-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.register-location {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.register-date {
    font-size: 1rem;
    color: #666;
    margin: 1rem 0 0 0;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 82, 255, 0.1);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.highlight-text strong {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.highlight-text span {
    color: #666;
    font-size: 0.75rem;
}

.register-agreement {
    margin: 2.5rem 0;
    text-align: left;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.agreement-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 82, 255, 0.3);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #0052FF 0%, #00FF88 100%);
    border-color: #00FF88;
}

.agreement-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.agreement-text {
    flex: 1;
}

.terms-link {
    color: #00D4FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #00FF88;
    text-decoration: underline;
}

.btn-register {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0052FF 0%, #00FF88 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
    margin-top: 1.5rem;
}

.btn-register:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.4);
}

.btn-register:disabled {
    opacity: 1;
    cursor: not-allowed;
    background: #e0e0e0;
    color: #999;
    box-shadow: none;
}

/* Step 2 Styles */
.register-subtitle {
    color: var(--primary-color);
}

.ticket-price {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid rgba(0, 82, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.qr-instruction {
    margin: 2.5rem 0;
}

.qr-title {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.qr-description {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.wallet-connect {
    margin: 2.5rem 0;
}

.btn-trust-wallet {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #0052FF 0%, #00D4FF 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
}

.btn-trust-wallet:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 82, 255, 0.4);
    background: linear-gradient(135deg, #0041cc 0%, #00b8e6 100%);
}


.ticket-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.seats-count {
    color: #00FF88;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.seats-label {
    color: #666;
    font-size: 0.95rem;
    margin: 0.5rem 0 0 0;
}

/* Responsive */
@media (max-width: 480px) {
    .register-content {
        padding: 2rem 1.5rem;
    }

    .register-title {
        font-size: 2rem;
    }

    .register-subtitle {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .seats-count {
        font-size: 2rem;
    }
}
