.counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

#counter-display {
    font-size: 8rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

.counter-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.counter-btn-big {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: none;
    background: var(--accent-color);
    color: white;
    font-size: 6rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(167, 139, 250, 0.4);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.counter-btn-big:hover {
    background: #b794f4;
    box-shadow: 0 20px 45px rgba(167, 139, 250, 0.5);
    transform: translateY(-2px);
}

.counter-btn-big:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3);
}

.counter-btn-small {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 12px 30px;
    border-radius: 100px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    backdrop-filter: blur(5px);
}

.counter-btn-small:hover {
    background: var(--glass-border);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.counter-btn-small:active {
    transform: scale(0.98);
}

/* Playground Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--glass-border);
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 10px 20px rgba(167, 139, 250, 0.3);
}

.app-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.app-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
