/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

:root {
    --primary-color: #e60012;
    --primary-dark: #d2000f;
    --primary-light: #ff333f;
    --secondary-color: #005caa;
    --secondary-dark: #004b8c;
    --secondary-light: #147cca;
    --background-color: #f7f7f7;
    --card-background: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #dddddd;
    --error-color: #e60012;
    --success-color: #1eb054;
    --warning-color: #f59a23;
    --input-bg: #f9f9f9;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-default: all 0.3s ease;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-container {
    padding-top: 20px;
    padding-bottom: 50px;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 5px;
}

.user-actions {
    display: flex;
    gap: 20px;
}

.top-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-default);
}

.top-link:hover {
    color: #e6e6e6;
}

.top-link i {
    margin-right: 5px;
}

/* Header Styles */
header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 5px;
}

.slogan {
    color: var(--text-light);
    font-size: 16px;
}

.main-nav {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-default);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Banner Styles */
.banner {
    display: flex;
    background: linear-gradient(to right, #f9f9f9, #e9f1f8);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.banner-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.banner-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.banner-buttons {
    display: flex;
    gap: 15px;
}

.banner-btn {
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: var(--transition-default);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
}

.secondary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.banner-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Features Styles */
.features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background-color: var(--card-background);
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-default);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 32px;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-color: #fff2f2;
    box-shadow: 0 0 0 8px rgba(230, 0, 18, 0.1);
}

.feature-item:nth-child(2) .feature-icon {
    color: var(--secondary-color);
    background-color: #eef5fb;
    box-shadow: 0 0 0 8px rgba(0, 92, 170, 0.1);
}

.feature-item:nth-child(3) .feature-icon {
    color: var(--warning-color);
    background-color: #fff8ee;
    box-shadow: 0 0 0 8px rgba(245, 154, 35, 0.1);
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
}

/* Main Content Styles */
main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background-color: var(--card-background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
}

.card-header {
    margin-bottom: 25px;
    text-align: center;
}

.card h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card h2 i {
    margin-right: 8px;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 14px;
}

.recharge-card {
    flex: 3;
}

.side-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.required {
    color: var(--error-color);
    margin-right: 2px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    color: var(--text-light);
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 15px 12px 35px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    background-color: var(--input-bg);
    transition: var(--transition-default);
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 92, 170, 0.1);
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 16px;
}

.password-toggle:hover {
    color: var(--secondary-color);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.form-tip {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* Verification Code Styles */
.verification-code .code-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.small-input {
    width: 150px;
}

.code-image {
    background: linear-gradient(135deg, #e9ecef, #d8e0ed);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    width: 100px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;
    user-select: none;
    color: var(--secondary-dark);
    font-family: 'Courier New', monospace;
    padding: 0 10px;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.code-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(0, 0, 0, 0.02) 4px,
        rgba(0, 0, 0, 0.02) 8px
    );
    z-index: 1;
}

.code-image #captchaText {
    position: relative;
    z-index: 2;
}

.refresh-button {
    padding: 10px 15px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-default);
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.refresh-button i {
    margin-right: 5px;
}

.refresh-button:hover {
    background-color: #e9ecef;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.submit-button,
.reset-button {
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: var(--transition-default);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
}

.submit-button i,
.reset-button i {
    margin-right: 5px;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

.reset-button {
    background-color: var(--input-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.reset-button:hover {
    background-color: #e9ecef;
}

/* Info Card Styles */
.info-card,
.service-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.info-card-header,
.service-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.info-card-header h3,
.service-header h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-header i,
.service-header i {
    margin-right: 8px;
}

.check-list {
    list-style: none;
    padding: 20px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.check-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-content p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
    margin-top: 15px;
    transition: var(--transition-default);
}

.service-btn:hover {
    background-color: var(--secondary-dark);
}

.service-btn i {
    margin-right: 5px;
    color: white !important;
}

/* Steps Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.section-title span {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    background-color: var(--background-color);
    z-index: 1;
    color: var(--secondary-color);
}

.section-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 0;
}

.section-title i {
    margin-right: 8px;
}

.steps-section {
    margin-bottom: 40px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 25px 15px;
    background-color: var(--card-background);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.step-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 24px;
    color: var(--text-light);
    padding: 0 10px;
}

/* FAQ Section Styles */
.faq-section {
    margin-bottom: 40px;
}

.accordion {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.accordion-item {
    margin-bottom: 10px;
    background-color: white;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 15px 20px;
    background-color: white;
    color: var(--text-color);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition-default);
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-icon {
    margin-right: 10px;
    color: var(--secondary-color);
    transition: var(--transition-default);
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 20px;
    max-height: 300px;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content ul,
.accordion-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-content li {
    margin-bottom: 5px;
}

/* Promotion Section Styles */
.promotion-section {
    margin-bottom: 40px;
}

.promotions {
    display: flex;
    gap: 20px;
}

.promotion-card {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-default);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.promotion-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: bold;
}

.promotion-content {
    padding: 20px;
}

.promotion-content h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.promotion-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    min-height: 44px;
}

.promotion-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition-default);
}

.promotion-btn:hover {
    background-color: var(--secondary-dark);
}

/* App Download Styles */
.app-download {
    display: flex;
    background: linear-gradient(to right, var(--secondary-color), #03396c);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    color: white;
    margin-bottom: 40px;
}

.app-content {
    flex: 1;
    padding: 40px;
}

.app-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.app-content p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.app-features {
    list-style: none;
    margin-bottom: 25px;
}

.app-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.app-features i {
    color: #4cd964;
    margin-right: 10px;
}

.download-buttons {
    display: flex;
    gap: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-default);
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.download-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.app-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* Footer Styles */
footer {
    color: var(--text-light);
    background-color: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-default);
}

.footer-column a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f5f5f5;
    color: var(--text-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-default);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    padding: 20px 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 15px 20px;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.modal-body h4 {
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.modal-body p {
    margin-bottom: 10px;
}

.modal-footer {
    padding: 15px 20px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: flex-end;
}

.btn-agree {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition-default);
}

.btn-agree:hover {
    background-color: var(--secondary-dark);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.active {
    display: flex;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-default);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
}

/* Responsive Design */
@media (min-width: 992px) {
    header {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        justify-content: flex-start;
    }
    
    main {
        flex-direction: row;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .features,
    .promotions {
        flex-wrap: wrap;
    }
    
    .feature-item,
    .promotion-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .steps-container {
        flex-wrap: wrap;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .top-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner {
        flex-direction: column;
    }
    
    .features,
    .promotions {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .app-download {
        flex-direction: column;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .verification-code .code-container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .small-input,
    .code-image,
    .refresh-button {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* 结果模态框样式 */
.success-container, .error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.success-icon, .error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

.success-icon {
    background-color: var(--success-color);
    animation: pulse 2s infinite;
}

.error-icon {
    background-color: var(--error-color);
    animation: shake 0.5s;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 176, 84, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(30, 176, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 176, 84, 0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.success-message, .error-message {
    font-size: 24px;
    margin-bottom: 15px;
}

.success-message {
    color: var(--success-color);
}

.error-message {
    color: var(--error-color);
}

.success-details, .error-details {
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.order-info {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    max-width: 450px;
    width: 100%;
    margin-bottom: 20px;
}

.order-info h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-info h3 i {
    margin-right: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    color: var(--text-light);
}

.info-value {
    font-weight: bold;
} 