/* Dashboard Layout */
.dashboard-page {
    display: flex;
    min-height: 100vh;
    background-color: #0a1120;
    color: white;
    font-family: var(--font-primary);
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background-color: #0c1527;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.sidebar-header .accent {
    color: var(--accent-color);
}

.toggle-sidebar {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: none;
}

.toggle-sidebar:hover {
    opacity: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.status-badge {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid #0c1527;
}

.status-badge.online {
    background-color: #4CAF50;
}

.user-info h3 {
    margin: 0 0 5px;
    font-size: 0.95rem;
    font-weight: 500;
}

.user-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

.sidebar-nav {
    flex: 1;
    padding: 10px 0;
    overflow-y: auto;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin: 5px 0;
}

.sidebar-nav li.active a {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 1;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s, background-color 0.2s;
}

.sidebar-nav a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-nav i {
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.sidebar.collapsed .sidebar-nav i {
    margin-right: 0;
}

.sidebar-nav .separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 10px 20px;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
    background-color: #0c1425;
    padding-bottom: 40px;
}

.dashboard-section,
.llm-section {
    padding: 20px;
    display: none;
}

.dashboard-section.active,
.llm-section.active {
    display: block;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.content-header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.primary-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.search-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-box i {
    opacity: 0.7;
    margin-right: 10px;
}

.search-box input {
    background: none;
    border: none;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    width: 180px;
}

.search-box input:focus {
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notifications {
    position: relative;
    cursor: pointer;
}

.notifications i {
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.notifications:hover i {
    opacity: 1;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Stats */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(145deg, #0c1e3b, #0a1527);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.stat-icon.blue {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.stat-icon.green {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.stat-icon.purple {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.stat-content h3 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1;
}

.stat-comparison {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.stat-comparison span {
    opacity: 0.7;
    margin-left: 5px;
}

.stat-comparison.positive {
    color: #4CAF50;
}

.stat-comparison.negative {
    color: #F44336;
}

/* Dashboard Cards */
.dashboard-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 1200px) {
    .dashboard-row {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .dashboard-row {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: linear-gradient(145deg, #0c1e3b, #0a1527);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions select {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.8rem;
    cursor: pointer;
}

.refresh-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    border-radius: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.refresh-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.action-btn {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.action-btn:hover {
    opacity: 0.8;
}

/* Chart Styles */
.chart-container {
    padding: 20px;
    height: 300px;
}

/* Metrics Styles */
.metrics-container {
    padding: 20px;
}

.metric {
    margin-bottom: 20px;
}

.metric:last-child {
    margin-bottom: 0;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.metric-info h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.metric-info p {
    margin: 0;
    font-weight: 700;
    color: var(--accent-color);
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

/* Projects List */
.projects-container {
    padding: 20px;
}

.project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.project-item:last-child {
    border-bottom: none;
}

.project-info h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 500;
}

.project-info p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

.project-meta {
    text-align: right;
    font-size: 0.8rem;
}

.project-status {
    display: block;
    margin-bottom: 5px;
}

.project-status.active {
    color: #4CAF50;
}

.project-status.paused {
    color: #FFC107;
}

.project-updated {
    opacity: 0.7;
}

/* GitHub Activity */
.activity-container {
    padding: 20px;
}

.activity-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.activity-content h3 {
    margin: 0 0 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-content p {
    margin: 0 0 5px;
    font-size: 0.8rem;
}

.activity-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.activity-content a:hover {
    text-decoration: underline;
}

.activity-time {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
}

.sync-github-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sync-github-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* LLM Studio Styles */
.llm-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.tab {
    padding: 12px 20px;
    cursor: pointer;
    opacity: 0.7;
    border-bottom: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
}

.tab.active {
    opacity: 1;
    border-bottom-color: var(--accent-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Models View */
.models-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.search-filter {
    display: flex;
    gap: 10px;
}

.search-filter input {
    width: 250px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.search-filter select {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.view-options {
    display: flex;
    gap: 5px;
}

.view-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.view-btn.active {
    background-color: var(--accent-color);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.model-card {
    background: linear-gradient(145deg, #0c1e3b, #0a1527);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.model-header {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.model-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 600;
}

.model-tag.base {
    background-color: #2196F3;
    color: white;
}

.model-tag.finetune {
    background-color: #4CAF50;
    color: white;
}

.model-tag.experimental {
    background-color: #FF9800;
    color: white;
}

.model-tag.distilled {
    background-color: #9C27B0;
    color: white;
}

.model-specs {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item {
    flex: 1;
    text-align: center;
}

.spec-name {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.spec-value {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

.model-description {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.model-description p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.8;
}

.model-actions {
    display: flex;
    padding: 15px;
    gap: 10px;
}

.model-btn {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.model-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.model-btn i {
    font-size: 0.9rem;
}

.add-model-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 260px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.add-model-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.add-model-content {
    text-align: center;
    padding: 20px;
}

.add-model-content i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    opacity: 0.8;
}

.add-model-content h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.add-model-content p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Training Section */
.training-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 1200px) {
    .training-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .training-container {
        gap: 20px;
    }
}

.training-form {
    padding: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.form-group select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px 15px;
    color: white;
    font-size: 0.9rem;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio input {
    cursor: pointer;
}

.radio span {
    font-size: 0.9rem;
}

.data-source-options {
    display: flex;
    gap: 10px;
}

.source-btn {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.source-btn.active {
    background-color: rgba(var(--accent-color-rgb), 0.2);
    border-color: var(--accent-color);
}

.source-btn i {
    font-size: 1.5rem;
}

.parameter-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.parameter-input label {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.parameter-input input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 8px 10px;
    color: white;
    font-size: 0.9rem;
}

.advanced-params-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 15px;
}

/* Training Jobs */
.job-list {
    padding: 20px;
}

.job-item {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid transparent;
}

.job-item:last-child {
    margin-bottom: 0;
}

.job-item.active {
    border-left-color: #4CAF50;
}

.job-item.completed {
    border-left-color: #2196F3;
}

.job-item.failed {
    border-left-color: #F44336;
}

.job-info {
    margin-bottom: 15px;
}

.job-info h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 500;
}

.job-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.job-progress {
    margin-bottom: 15px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.job-result {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
}

.result-item {
    font-size: 0.8rem;
}

.result-item span:first-child {
    display: block;
    opacity: 0.7;
    margin-bottom: 5px;
}

.result-item span:last-child {
    font-weight: 600;
    color: var(--accent-color);
}

.job-error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.job-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.job-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .toggle-sidebar {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 999;
        transform: translateX(0);
        transition: transform 0.3s ease, width 0.3s ease;
    }
    
    .sidebar.collapsed {
        transform: translateX(-280px);
    }
    
    .sidebar.collapsed + .main-content {
        margin-left: 0;
    }
    
    .sidebar-nav span {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s, visibility 0.2s;
    }
    
    .sidebar.collapsed .sidebar-nav span {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .card-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Start Guide Overlay */
.start-guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.start-guide-content {
    background: linear-gradient(145deg, #0c1e3b, #0a1527);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.start-guide-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.start-guide-content > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.start-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .start-options {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .start-options {
        grid-template-columns: 1fr 1fr;
    }
}

.start-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.start-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.option-icon i {
    font-size: 2rem;
    color: white;
}

.option-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.option-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.option-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.option-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.option-btn:hover {
    background: var(--primary-color);
}

.start-guide-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .start-guide-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.help-link {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.help-link:hover {
    text-decoration: underline;
}