/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 面包屑导航样式 */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.875rem;
}

.breadcrumb-item {
    margin-right: 0.5rem;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    display: inline-block;
    padding: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item:last-child::after {
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* 支持两种logo结构 */
.logo, .logo h1 {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
}

.logo {
    text-decoration: none;
}

.logo h1 {
    margin: 0;
}

/* 支持两种导航结构 */
nav {
    display: flex;
    align-items: center;
}

/* 直接链接结构 */
nav > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    margin-right: 1.5rem;
}

/* 列表结构 */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

/* 通用导航链接样式 */
nav a:hover, nav ul li a:hover {
    color: #007bff;
}

nav a.active, nav ul li a.active {
    color: #007bff;
    font-weight: 600;
}

nav a.active::after, nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    border-radius: 2px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info span {
    color: #333;
}

.user-info a {
    text-decoration: none;
    color: #007bff;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

/* 主要内容样式 */
main {
    padding: 2rem 0;
}

/* 英雄区域 */
.hero {
    text-align: center;
    padding: 4rem 0;
    background-color: #fff;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 特性区域 */
.features {
    background-color: #fff;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-item p {
    color: #666;
}

/* 表单样式 */
form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.help-text {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/* 视频列表样式 */
.video-list {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 页面头部 */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.page-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* 视频网格 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* 视频卡片 */
.video-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* 视频预览区域 */
.video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #f8f9fa;
    overflow: hidden;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 视频占位符 */
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #6c757d;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 500;
}

/* 状态标签 */
.status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.badge-processing {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.badge-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.badge-failed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 视频详情 */
.video-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 视频标题 */
.video-title {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 视频元信息 */
.video-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    flex: 1;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    color: #333;
    font-weight: 500;
}

/* 视频操作 */
.video-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.video-actions .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}



/* 状态筛选样式 */
.status-filter {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #6c757d;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: #e9ecef;
    color: #007bff;
    border-color: #007bff;
}

.filter-btn.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* 删除按钮样式 */
.btn-danger {
    background-color: #dc3545;
    color: #fff;
    border: 1px solid #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1rem;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.5rem - 1px);
    border-top-right-radius: calc(0.5rem - 1px);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
    color: #212529;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.15s ease-in-out;
}

.btn-close:hover {
    opacity: 0.75;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: calc(0.5rem - 1px);
    border-bottom-right-radius: calc(0.5rem - 1px);
    gap: 0.5rem;
}

/* 响应式筛选 */
@media (max-width: 768px) {
    .status-filter {
        flex-direction: column;
    }
    
    .filter-btn {
        text-align: center;
    }
}

/* 用户信息样式增强 */
.user-info .points strong {
    color: #28a745;
    font-weight: 600;
}

.user-info .welcome {
    color: #333;
    font-weight: 500;
}

.user-info .btn-login, .user-info .btn-register {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.user-info .btn-login {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.user-info .btn-login:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.user-info .btn-register {
    background-color: #fff;
    color: #007bff;
    border: 1px solid #007bff;
}

.user-info .btn-register:hover {
    background-color: #f8f9fa;
}

.user-info .btn-logout {
    color: #dc3545;
    font-weight: 500;
    transition: color 0.3s ease;
}

.user-info .btn-logout:hover {
    color: #c82333;
}

/* 分页样式 */
.pagination {
    margin-top: 2rem;
    text-align: center;
}

.pagination ul {
    display: inline-flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 5px;
    display: inline-block;
    float: none;
}

.pagination a,
.pagination span {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.pagination .active span {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination .disabled span,
.pagination .disabled a {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd;
}

/* 视频生成进度条样式 */
.progress-container {
    width: 80%;
    margin: 15px auto 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #007bff;
    border-radius: 5px;
    transition: width 0.3s ease;
    width: 0%;
    animation: progress-animation 0.3s ease-in-out;
}

@keyframes progress-animation {
    from {
        width: 0%;
    }
    to {
        width: var(--progress-width, 0%);
    }
}

.progress-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 8px;
}

.progress-actions {
    display: flex;
    justify-content: center;
}

.btn-sm {
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.refresh-status {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.refresh-status:hover {
    background-color: #0056b3;
}

.refresh-status:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    /* 适配直接链接结构 */
    nav > a {
        margin-right: 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* 适配列表结构 */
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin-right: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .user-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .video-list {
        padding: 1rem;
    }
    
    .page-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .page-header h2 {
        font-size: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .video-card {
        border-radius: 8px;
    }
    
    .video-preview {
        aspect-ratio: 16 / 9;
    }
    
    .video-details {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .video-meta {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .video-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .video-actions .btn {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }
    
    .status-badge {
        top: 8px;
        right: 8px;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .placeholder-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .placeholder-text {
        font-size: 0.875rem;
    }
}

/* 充值页面样式 */
.recharge-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.recharge-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.recharge-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.package-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.package-item.active {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.package-info h4 {
    margin-bottom: 10px;
    color: #333;
}

.package-info p {
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-methods h4 {
    margin-bottom: 15px;
    color: #333;
}

/* 支付方式按键样式 */
.payment-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-btn {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    overflow: hidden;
}

.payment-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-btn span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.payment-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-btn input[type="radio"]:checked + span {
    color: #007bff;
    font-weight: 600;
}

.payment-btn input[type="radio"]:checked {
    background: #007bff;
}

.payment-btn input[type="radio"]:checked + span::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #007bff;
    border-radius: 6px;
    z-index: -1;
}

.payment-btn input[type="radio"]:checked + span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.05);
    z-index: -1;
    border-radius: 6px;
}

/* 旧的单选框样式（保留兼容） */
.method-item {
    margin-bottom: 10px;
}

.method-item input[type="radio"] {
    margin-right: 8px;
}

.method-item label {
    cursor: pointer;
    color: #666;
}

.recharge-form .form-group {
    margin-bottom: 15px;
}

.recharge-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #666;
}

.recharge-form input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.recharge-form .form-actions {
    margin-top: 20px;
}

.recharge-rules {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.recharge-rules h3 {
    margin-bottom: 15px;
    color: #333;
}

.recharge-rules ul {
    list-style-type: decimal;
    padding-left: 20px;
    color: #666;
}

.recharge-rules li {
    margin-bottom: 8px;
}

/* 方法项样式 */
.method-item {
    margin-bottom: 10px;
}

.method-item input[type="radio"] {
    margin-right: 8px;
}

/* 支付页面样式 */
.pay-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pay-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.pay-info p {
    margin: 10px 0;
    color: #333;
}

.pay-info p strong {
    color: #007bff;
}

/* 二维码支付样式 */
.qr-payment {
    text-align: center;
}

.qr-code-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

#qrCode {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 跳转支付样式 */
.redirect-payment {
    text-align: center;
}

/* 响应式支付页面 */
@media (max-width: 768px) {
    .pay-container {
        margin: 20px auto;
        padding: 20px;
    }
    
    #qrCode {
        width: 180px;
        height: 180px;
    }
    
    .pay-info {
        padding: 15px;
    }
    
    .pay-info p {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* 充值成功/失败页面样式 */
.success-container, .failed-container {
    margin: 100px auto;
    max-width: 500px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon i {
    font-size: 80px;
    color: #28a745;
}

.failed-icon i {
    font-size: 80px;
    color: #dc3545;
}


