/* HyperCmdC for pCloud Specific Styles */

/* --- Hero Section Override --- */
.hero {
    /* Blue/Green radial gradient mix */
    background: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
}

/* --- Features Grid (from desc_long) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-highlight {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    /* Blue Border */
    border-radius: 4px;
    /* Techy corners */
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    /* Hover -> Green */
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.15);
    /* Green Glow */
}

/* --- Manual Section Styles --- */
.manual-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
}

/* Step Number Badge */
.step-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gradient);
    /* Green Gradient */
    color: #000;
    /* Dark text on bright green */
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
}

.manual-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.manual-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Step List */
.step-list {
    list-style: none;
    padding: 0;
    counter-reset: manual-step;
}

.step-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.step-list li::before {
    counter-increment: manual-step;
    content: counter(manual-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: rgba(0, 255, 157, 0.15);
    /* Green bg */
    color: var(--secondary);
    /* Green text */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 5px var(--secondary);
}

/* Keyboard Keys */
kbd {
    background-color: #0d1117;
    border: 1px solid var(--primary);
    border-radius: 4px;
    box-shadow: 0 2px 0 var(--primary);
    color: var(--primary);
    display: inline-block;
    padding: 0.1em 0.4em;
    font-family: 'Inter', monospace;
    font-size: 0.85em;
    font-weight: 600;
    margin: 0 0.2em;
    white-space: nowrap;
}

/* Scenario Box */
.scenario-box {
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--primary);
    /* Blue left border */
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}

.scenario-title {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

/* Drop Zone Visual (for Drag & Drop section) */
.drop-zone-visual {
    width: 100%;
    height: 150px;
    border: 2px dashed var(--primary);
    /* Blue Dashed */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    /* Green Text */
    background: rgba(0, 255, 157, 0.05);
    margin: 2rem 0;
    font-weight: 600;
    text-shadow: 0 0 5px var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-card {
        padding: 1.5rem;
    }

    .manual-title {
        font-size: 1.5rem;
    }
}