:root {
   --blue: #2d7eda;
   --green : #2E7D32;
}

:root.dark {
    --blue: #60a2ed;
   --green : #5aca5f;
    
}


.notice {
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.5;
    color: red;
    max-width: 700px;
    margin: auto;
    width: 80%;
    padding-bottom: 20px;
}

.yt img {
    border: 4px solid #19344F;
    border-radius: 6px;
}

.yt img:hover {
    border: 4px solid #FE0200;
}

/* Action cards */
.action-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .action-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
        margin: 2rem auto;
    }
}

.action-card {
    position: relative;
    text-decoration: none;
    background: linear-gradient(135deg, var(--surf-container) 0%, var(--surf-container-high) 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid var(--primary-surface-border);

}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6DBF73 0%, #58a25d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.action-card.new-app::before {
    background: linear-gradient(90deg, #4CAF50 0%, #2E7D32 100%);
}

.action-card.continue-app::before {
    background: linear-gradient(90deg, #2196F3 0%, #1565C0 100%);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6DBF73 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.action-card.new-app .action-card-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-card.continue-app .action-card-icon {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.action-card:hover .action-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.action-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    /* color: var(--on-surface); */
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.action-card-description {
    font-size: 0.95rem;
    /* color: var(--on-surface-variant); */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-card-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(109, 191, 115, 0.15);
    color: #4CAF50;
}

.action-card.new-app .action-card-badge {
    background: rgba(76, 175, 80, 0.15);
    color: var(--green);
}

.action-card.continue-app .action-card-badge {
    background: rgba(33, 150, 243, 0.15);
    color: var(--blue);
}

@media (max-width: 768px) {
    .action-card {
        padding: 2rem 1.5rem;
    }

    .action-card-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .action-card-title {
        font-size: 1.25rem;
    }

    .action-card-description {
        font-size: 0.9rem;
    }
}

.divider-text {
    text-align: center;
    position: relative;
    margin: 2rem 0;
    color: var(--on-surface-variant);
    font-size: 0.9rem;
    opacity: 0.7;
}
